forked from gabriel-custard/projeto-live-coding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="css/styles.css"/>
<link rel="stylesheet" href="css/responsive.css"/>
<link rel="icon" href="img/startse-icon.png"/>
<title>StartSe</title>
</head>
<body>
<header>
<div class="container">
<img src="img/startse_logo.png" />
<section class="menu-section">
<div class="container-menu">
<input type="checkbox" id="checkbox-menu"/>
<label class= "menu-button-container" for="checkbox-menu">
<span></span>
<span></span>
<span></span>
</label>
<nav>
<ul class="menu">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Sobre</a>
</li>
<li>
<a href="#">Formulário</a>
</li>
</ul>
</nav>
</div>
</section>
</div>
</header>
</body>
</html>