-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontato.html
76 lines (73 loc) · 2.26 KB
/
contato.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DINDIN | Contato</title>
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="./assets/css/contato.css">
<link rel="stylesheet" href="./assets/css/global.css">
</head>
<body>
<!-- START HEADER -->
<header>
<section class="container">
<a href="./inicio.html"><img src="./assets/images/logo-header.png" alt="Logo da Empresa DinDin"></a>
<nav>
<ul>
<li><a href="./post.html">CURSOS</a></li>
<li><a href="./blog.html">BLOG</a></li>
<li><a href="./contato.html">CONTATO</a></li>
</ul>
</nav>
</section>
</header>
<!-- END HEADER -->
<!-- START MAIN -->
<main>
<section class="container">
<div class="form-area">
<h1>Contato</h1>
<div >
<form action="" method="get">
<input type="text" name="" id="" placeholder="nome">
<input type="email" name="" id="" placeholder="e-mail">
<textarea name="" id="" cols="30" rows="10" placeholder="mensagem"></textarea>
<button type="submit">entrar</button>
</form>
</div>
</div>
<div class="img-content">
<img src="./assets/images/ilustra-contato.png" alt="">
</div>
</section>
</main>
<!-- END MAIN -->
<!-- START FOOTER -->
<footer>
<section class="container">
<a href="./inicio.html"><img src="./assets/images/logo-footer.png" alt="Logo Footer"></a>
<nav>
<ul>
<li><a href="./cursos.html"> cursos</a></li>
<li><a href="./blog.html"> blog</a></li>
<li><a href="./contato.html"> contato</a></li>
</ul>
</nav>
<div>
<div>
<a href="#">quero ser prof</a>
</div>
<div>
<a href="#">aqui tem outro link</a>
</div>
</div>
</section>
</footer>
</body>
</html>