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: 33 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="pt-br">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&family=Roboto:wght@300;500&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="reset.css">

<title>Amazing Graphics</title>

</head>

<body>
<header class="header">
<div class="container">
<p>DevChallenger</p>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</header>


</header>
</body>

</html>
33 changes: 33 additions & 0 deletions features.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="pt-br">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&family=Roboto:wght@300;500&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="reset.css">

<title>Amazing Graphics</title>

</head>

<body>
<header class="header">
<div class="container">
<p>DevChallenger</p>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</header>


</header>
</body>

</html>
49 changes: 44 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
DevChallenge
Home Features Contact
Create amazing graphics
Colaborate and create beautiful graphics with your team
Start now
<!DOCTYPE html>
<html lang="pt-br">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&family=Roboto:wght@300;500&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="reset.css">

<title>Amazing Graphics</title>

</head>

<body>

<header class="header">
<div class="container">
<p>DevChallenger</p>
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</header>

<div id="container">
<section class="content">
<h1>Creat amazing <br> graphics</h1>
<img src="./assets/team.jpg" alt="Imagem de fundo">
<p>Colaborate and create beautiful<br> graphics with your team</p>
<button class="btn">
<h3>Start now</h3>
</button>
</section>
</div>

</header>
</body>

</html>
Loading