development #14

Merged
Rafael_Sampaio_de_Oliveira merged 27 commits from development into main 2022-10-11 23:34:51 +00:00
3 changed files with 45 additions and 0 deletions
Showing only changes of commit 0303f189f8 - Show all commits

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

14
assets/styles/styles.css Normal file
View File

@ -0,0 +1,14 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100px;
background: #000000;
}

22
index.html Normal file
View File

@ -0,0 +1,22 @@
<!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>Landing Page Desafio</title>
<link rel="stylesheet" href="./assets/styles/styles.css" />
</head>
<body>
<header>
<a href="/">
<img
src="./assets/images/Logo-M3Academy 1.svg"
alt="Logo da M3 Academy"
/>
</a>
</header>
</body>
</html>