feat: adiciona estrutura header

This commit is contained in:
Naian Felix dos Santos 2022-10-10 16:41:07 -03:00
parent 89ee7124ac
commit b5ebb5ee98
3 changed files with 32 additions and 2 deletions

View File

@ -1,6 +1,7 @@
# challenge-landing-page
# Desafio Landing Page
## Descrição do Projeto
<p align="center">Utilizando HTML5 e CSS3 para criar uma landing page reponsiva.</p>
## Getting started

0
assets/styles/main.css Normal file
View File

29
index.html Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="pt-br">
<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">
<title>Desafio Landing Page</title>
<link rel="stylesheet" href="assets/styles/main.css">
</head>
<body>
<header class="page-header">
<a href="/">
<img class="header-logo" src="assets/image/Logo-M3Academy 1.svg" alt="Logo M3Academy">
</a>
</header>
<main>
</main>
</body>
</html>