48 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			48 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"> <!-- displays site properly based on user's device -->
 | 
						|
 | 
						|
  <link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
 | 
						|
  <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous">
 | 
						|
  <link rel="stylesheet" href="css/style.css">
 | 
						|
  
 | 
						|
  <title>Frontend Mentor | Ping coming soon page</title>
 | 
						|
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
  <header>
 | 
						|
    <div class="logoSection"></div>
 | 
						|
  </header>
 | 
						|
  <main>
 | 
						|
    <div class="titleSection">
 | 
						|
      <p class="line1">We are launching <b>soon!</b></p>
 | 
						|
      <p class="line2">Subscribe and get notified</p>
 | 
						|
    </div>
 | 
						|
    <div class="formSection">
 | 
						|
      <form action="submit">
 | 
						|
        <input type="email" name="emailInput" id="emailInput" placeholder="Your email address...">
 | 
						|
        <button>Notify Me</button>
 | 
						|
      </form>
 | 
						|
    </div>
 | 
						|
    <div class="imageSection">
 | 
						|
      <img src="./images/illustration-dashboard.png" alt="Illustration of the dashboard" class="mockupImage">
 | 
						|
    </div>
 | 
						|
  </main>
 | 
						|
  <div class="socialButtonsSection">
 | 
						|
    <a href="https://facebook.com/tarasis"><i class="fab fa-facebook-f"></i></a>
 | 
						|
    <a href="https://twitter.com/tarasis"><i class="fab fa-twitter"></i></a>
 | 
						|
    <a href="https://www.instagram.com/tarasis/"><i class="fab fa-instagram"></i></a>
 | 
						|
  </div>
 | 
						|
  <footer>
 | 
						|
    <p class="copyright">
 | 
						|
      © Copyright Ping. All rights reserved.
 | 
						|
    </p>
 | 
						|
    <p class="attribution">
 | 
						|
      Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. 
 | 
						|
      Coded by <a href="mailto:work@tarasis.net">Robert McGovern</a>.
 | 
						|
    </p>
 | 
						|
  </footer>
 | 
						|
</body>
 | 
						|
</html> |