-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
40 lines (37 loc) · 1.92 KB
/
contact.html
File metadata and controls
40 lines (37 loc) · 1.92 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./style/global.css">
<link rel="stylesheet" href="./style/contact-style.css">
<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:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<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>Contato</title>
</head>
<body>
<header class="header">
<a href="index.html"><img src="./images/logo-header.svg" alt="" class="logo-header"></a>
<div class="nav-container"> <a href="courses.html">CURSOS</a><a href="blog.html">BLOG</a><a href="contact.html">CONTATO</a> </div>
</header>
<main class="main-container">
<div class="contact-container">
<form action="" class="contact-form">
<span class="contact-title">Contato</span>
<input type="text" class="input" placeholder="nome">
<input type="email" class="input" placeholder="e-mail">
<textarea name="" id="" cols="30" rows="10" class="message" placeholder="mensagem"></textarea>
<button type="submit" class="contact-button">enviar</button>
</form>
<img src="./images/contact-image.svg" alt="" class="contact-image">
</div>
</main>
<footer class="footer">
<img src="./images/logo-footer.svg" alt="" class="logo-footer">
<div class="footer-nav"> <a href="courses.html">cursos</a><a href="blog.html">blog</a><a href="contact.html">contato</a> </div>
<div class="footer-buttons"><a href="contact.html">quero ser prof</a><a href="article.html">aqui tem outro link</a></div>
</footer>
</body>
</html>