-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
45 lines (44 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="/styles/contato.css" rel="stylesheet">
<link href="/styles/media.css" rel="stylesheet">
<title>Contact</title>
</head>
<body>
<header>
<div id="title"><h1>
Social Networks
</h1></div>
<div class="hamburger-menu">
<input id="menu__toggle" type="checkbox" />
<label class="menu__btn" for="menu__toggle">
<span></span>
</label>
<ul class="menu__box">
<li><a class="menu__item" href="index.html"><li>Home</li>
<li><a class="menu__item" href="sobre.html"><li>About</li></a>
<li><a class="menu__item" href="projetos.html"><li>Projects</li></a>
<li><a class="menu__item" href="contato.html"><li>Contact</li></a>
</ul>
</div>
<ul class="list">
<a href="index.html"><li>Home</li></a>
<a href="sobre.html"><li>About</li></a>
<a href="projetos.html"><li>Projects</li></a>
<a href="contato.html"><li>Contact</li></a>
</ul>
</header>
<main>
<aside>
<a id="icons" href="https://www.linkedin.com/in/abnerkaizer/" class="fa fa-linkedin"></a>
<a id="icons" href="https://github.com/abnerkaizer/" class="fa fa-github"></a>
<a id="icons" href="https://instagram.com/abner.kaizer/" class="fa fa-instagram"></a>
</aside>
</main>
</body>
</html>