forked from M3-Academy/practice-time-landing-page
feature/banner #2
BIN
assets/images/main-banner-desktop.png
Normal file
BIN
assets/images/main-banner-desktop.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/images/main-banner-mobile.png
Normal file
BIN
assets/images/main-banner-mobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 333 KiB |
13
index.html
13
index.html
@ -11,11 +11,24 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- Header -->
|
||||
<header class="page-header">
|
||||
<a href="/">
|
||||
<img class="header-logo" src="./assets/svgs/logo-m3.svg" alt="logo da M3" />
|
||||
</a>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<!-- banner -->
|
||||
<div>
|
||||
<figure>
|
||||
<!-- banner desktop -->
|
||||
<img class="main-banner main-banner-desktop" src="/assets/images/main-banner-desktop.png" alt="imagem de um computador">
|
||||
<!-- banner mobile -->
|
||||
<img class="main-banner main-banner-mobile" src="/assets/images/main-banner-mobile.png" alt="imagem de um computador">
|
||||
</figure>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -15,3 +15,26 @@
|
||||
.header-logo {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*Banner*/
|
||||
.main-banner {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.main-banner-desktop {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.main-banner-mobile {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 414px) {
|
||||
.main-banner-desktop {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.main-banner-mobile {
|
||||
display: block;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user