-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.42 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inicio | Amazing Graph</title>
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="./main.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,300&display=swap" rel="stylesheet">
</head>
<body>
<div id="inicio">
<div id="container">
<header>
<div id="header">
<h1>DevChallenge</h1>
<input id="menu-botao" type="checkbox">
<label for="menu-botao">
<div class="botoes"></div>
</label>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</header>
<main>
<div id="texto">
<h1>Create amazing graphics</h1>
<p>Colaborate and create beautiful graphics with your team</p>
<button><a href="#" alt="Start" id="botao">Start now</a></button>
</div>
<img src="./assets/team.jpg" alt="team" width="300rem">
</main>
</div>
</div>
</body>
</html>