rmcg.dev/projects/FrontendMentor/newbie/equalizer-landing-page/index.html

76 lines
2.4 KiB
HTML
Raw Normal View History

2022-10-10 01:15:11 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="stylesheet" href="css/style.css">
<title>Frontend Mentor | Equalizer landing page</title>
</head>
<body>
2022-10-10 01:47:46 +02:00
<header>
2022-10-12 00:12:25 +02:00
<img class="logo" src="assets/logo.svg" alt="equalizer company logo">
2022-10-10 01:47:46 +02:00
</header>
2022-10-10 01:15:11 +02:00
2022-10-10 01:47:46 +02:00
<main>
2022-10-12 00:12:25 +02:00
<section class="intro-section">
<h1 class="page-header">We make your music sound extraordinary.</h1>
2022-10-10 01:15:11 +02:00
2022-10-12 00:12:25 +02:00
<p class="main-body">
2022-10-10 01:47:46 +02:00
A system audio equalizer specifically designed for Android and iOS. Freely tune the
way your music sounds with a professional grade parametric EQ & volume mixer. Control
bass, mids, treble, gain control, reverb, and more!
</p>
2022-10-10 01:15:11 +02:00
2022-10-10 01:47:46 +02:00
</section>
2022-10-12 00:12:25 +02:00
<section class="product-card">
2022-10-12 17:47:33 +02:00
<img class="product-card__image" src="assets/illustration-app.png" alt="Image of the Equalizer in use"
aria-hidden="true">
2022-10-12 00:12:25 +02:00
<h2 class="product-card__header">Premium EQ</h2>
2022-10-10 01:15:11 +02:00
2022-10-12 00:12:25 +02:00
<p class="product-card__body">
2022-10-10 01:47:46 +02:00
Get expert-level control with a robust equalizer, volume mixer, and spatial audio. Take
your listening experience to a whole new level and access all our incredible features!
</p>
2022-10-10 01:15:11 +02:00
2022-10-12 00:12:25 +02:00
<p class="price-block">
<span class="price-block__price">$4</span> <span class="price-block__term">/ month</span>
</p>
2022-10-10 01:15:11 +02:00
2022-10-10 01:47:46 +02:00
<div class="button-block">
2022-10-12 00:12:25 +02:00
<a class="button button-ios" href="#">
<img src="assets/icon-apple.svg" alt="Apple Logo" aria-hidden="true">
iOS Download</a>
<a class="button button-android" href="#">
<img src="assets/icon-android.svg" alt="Android Logo" aria-hidden="true">
Android Download</a>
2022-10-10 01:47:46 +02:00
</div>
</section>
</main>
<footer>
2022-10-12 00:12:25 +02:00
<img class="logo-footer" src="assets/logo.svg" alt="equalizer company logo">
2022-10-10 01:47:46 +02:00
2022-10-12 00:12:25 +02:00
<p class="footer__body">
2022-10-10 01:47:46 +02:00
All rights reserved © Equalizer 2021
2022-10-12 00:12:25 +02:00
Have any problems? Contact us via social media or email us at <span
class="footer__email">equalizer@example.com</span>
2022-10-10 01:47:46 +02:00
</p>
<div class="social-image-block">
<img src="assets/icon-facebook.svg" alt="Image for Facebook Logo">
<img src="assets/icon-instagram.svg" alt="Image for Instagram Logo">
<img src="assets/icon-twitter.svg" alt="Image for Twitter Logo">
</div>
</footer>
2022-10-10 01:15:11 +02:00
</body>
</html>