forked from M3-Academy/practice-time-landing-page
feat(css):adicionando e estilizando a logo
This commit is contained in:
parent
1c67f11ad6
commit
8af93f2617
BIN
assets/Image/m3_logo.png
Normal file
BIN
assets/Image/m3_logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
15
assets/css/main.css
Normal file
15
assets/css/main.css
Normal file
@ -0,0 +1,15 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.Page-Header{
|
||||
/* Rectangle 12 */
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 28px 0;
|
||||
background: #000000;
|
||||
}
|
||||
.Header-Logo{
|
||||
display: block;
|
||||
}
|
@ -1,16 +1,19 @@
|
||||
|
||||
<!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">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="stylesheet" href="/assets/css/main.css">
|
||||
<title>M3 Landing Page</title>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<header>
|
||||
|
||||
<header class="Page-Header">
|
||||
<a href="/">
|
||||
<img class="Header-Logo" src="assets/Image/m3_logo.png" alt="Logo M3">
|
||||
</a>
|
||||
</header>
|
||||
|
||||
</main>
|
||||
|
Loading…
Reference in New Issue
Block a user