-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (76 loc) · 3.62 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>F4 Bank</title>
<link rel="stylesheet" type="text/css" href="css/estilo-base.css">
<link rel="stylesheet" type="text/css" href="css/header.css">
<link rel="stylesheet" type="text/css" href="css/estilo-main.css">
<link rel="stylesheet" type="text/css" href="css/estilo-formulario.css">
<link rel="stylesheet" type="text/css" href="css/quem-somos.css">
<link rel="stylesheet" type="text/css" href="css/footer.css">
<style>
@import url('https://fonts.googleapis.com/css?family=Lato|Roboto&display=swap');
</style>
</head>
<body>
<div class="div-pai">
<header>
<nav class="header-navegacao">
<img src="img/f4bank.png" class="header-imagem">
<a href="index.html" target="_blank"><div>O Banco</div></a>
<a href="index.html" target="_blank"><div>Pra Você</div></a>
<a href="index.html" target="_blank" ><div>Empresas</div></a>
<a href="idex.html"> <div>Blog</div></a>
<a href="index.html"> <div>Investidor</div></a>
</nav>
</header>
<main class="main-texto-video">
<div>
<h1>Conta 100% isenta de tarifas. De verdade.</h1>
<p> A Conta Digital do Banco F4 é uma conta corrente com tudo o que você precisa.</p>
<p>Sem tarifas, sem asteriscos, sem surpresas! Acesse pelo App e Internet Banking.</p>
</div>
<section>
<iframe width="400" height="300" src="https://www.youtube.com/embed/ZFDflpXuiUA" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</section>
</main>
</section>
<section class="section-formulario">
<!--QUEM SOMOS-->
<article class="quem-somos">
<ul>
<a href="index.html" target="_blank" ><li>Quem Somos?</li></a>
<a href="index.html" target="_blank" ><li>Onde Estamos?</li></a>
<a href="index.html" target="_blank" ><li>Contato</li></a>
</ul>
</article>
<div class="formContainer">
<h2 class="form">Completo, digital e seguro.</h2>
<p class="form">Abra sua conta gratuita em segundos.</p>
<form>
<input id="name" name="name" type="text" placeholder="Digite seu nome Completo">
<input id="email" name="email" type="text" placeholder="Digite seu email principal">
<input id="telefone" name="telefone" type="text" placeholder="Digite seu telefone principal">
<input id="cpf" name="cpf" type="text" placeholder="Digite seu CPF">
<input type="submit" value="CONTINUAR">
</form>
</div>
</section>
<footer>
<div class="icons">
<div>
<a target="_blank" href="https://github.com/"> <img src="img/github.svg" class="rede-github" alt="ícone do github"></a>
</div>
<div>
<a target="_blank" href="https://www.linkedin.com.br"> <img src="img/linkedin.svg" class="rede-linkedin" alt="ícone do linkedin"></a>
</div>
<div>
<a target="_blank" href="https://www.instagram.com"> <img src="img/instagram.svg" class="rede-instagram" alt="ícone do instagram"></a>
</div>
</div>
</footer>
</div>
</body>
</html>