forked from M3-Academy/challenge-landing-page
Feature: Adicionar o Header Desktop e Mobile
This commit is contained in:
parent
96b1f61c9a
commit
81922e9349
21
_assets/css/main.css
Normal file
21
_assets/css/main.css
Normal file
@ -0,0 +1,21 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
background: #000000;
|
||||
padding: 29px 0;
|
||||
}
|
||||
|
||||
.header-logo {
|
||||
display: block;
|
||||
}
|
9
_assets/images/logo_m3.svg
Normal file
9
_assets/images/logo_m3.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 19 KiB |
30
index.html
30
index.html
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR">
|
||||
<head>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<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>Challenge Landing Page - M3 Academy | Affonso Kopmann</title>
|
||||
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="./_assets/css/main.css" />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Header | Image and Background -->
|
||||
<header class="page-header">
|
||||
<a href="/">
|
||||
<img
|
||||
class="header-logo"
|
||||
src="./_assets/images/logo_m3.svg"
|
||||
alt="Logo M3">
|
||||
</a>
|
||||
</header>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user