69 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
<!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>
 | 
						|
 | 
						|
  <header>
 | 
						|
    <img src="assets/logo.svg" alt="equalizer company logo">
 | 
						|
  </header>
 | 
						|
 | 
						|
  <main>
 | 
						|
    <section>
 | 
						|
      <h1>We make your music sound extraordinary.</h1>
 | 
						|
 | 
						|
      <p>
 | 
						|
        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>
 | 
						|
 | 
						|
    </section>
 | 
						|
    <section>
 | 
						|
      <h2>Premium EQ</h2>
 | 
						|
 | 
						|
      <p>
 | 
						|
        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>
 | 
						|
 | 
						|
      <div class="price-block">
 | 
						|
        $4 <span>/ month</span>
 | 
						|
      </div>
 | 
						|
 | 
						|
      <div class="button-block">
 | 
						|
        <a href="#">iOS Download</a>
 | 
						|
        <a href="#">Android Download</a>
 | 
						|
      </div>
 | 
						|
    </section>
 | 
						|
  </main>
 | 
						|
 | 
						|
 | 
						|
  <footer>
 | 
						|
 | 
						|
    <img src="assets/logo.svg" alt="equalizer company logo">
 | 
						|
 | 
						|
    <p>
 | 
						|
      All rights reserved © Equalizer 2021
 | 
						|
      Have any problems? Contact us via social media or email us at <span>equalizer@example.com</span>
 | 
						|
    </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>
 | 
						|
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |