Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 28 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
DevChallenge
Home Features Contact
Create amazing graphics
Colaborate and create beautiful graphics with your team
Start now
<!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="style.css">
<title>Amazing Graph</title>
</head>
<body>
<div class="container">
<navbar class="menu"><a href="#" class="logo">DevChallenge</a>
<ul class="lista">
<li><a href="#">Home</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Contact</a></li>
</ul>
</navbar>
<div class="title">
<h1>Create amazing graphics</h1>
<h2 class="texto">Colaborate and create beautiful graphics whith your team</h2>
</div>
<img src="assets/team.jpg" class="imagem">
<button class="button">Start</button>

</div>
</body>
</html>
43 changes: 43 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;1,100;1,300;1,400&display=swap');

*{
margin: 0;
padding: 0;
}

a {
color: #766F68;
text-decoration: none;
font-family: 'Roboto';
}

a:hover {
background: rgba(214, 122, 127, 0.5);
}

.logo {
font-size: 1.5rem;
font-weight: 600;
color: #D2872C;
}

.menu {
box-sizing: border-box;
height: 5rem;
padding: 2rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.lista {
display: flex;
list-style: none;
gap: .5rem;
font-size: 1.5rem;
font-weight: 400;
}

.menu a {
display: block;
padding: 2.5rem;
}