Facebook
From Arturo Ivan Artaza, 3 Years ago, written in HTML5.
Embed
Download Paste or View Raw
Hits: 126
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <meta charset="UTF-8">
  4.   <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
  5.  
  6.   <link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
  7.   <link rel="stylesheet" href="styles.css">
  8.   <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
  9.  
  10.   <title>Frontend Mentor | Intro component with sign up form</title>
  11.  
  12.   <!-- Feel free to remove these styles or customise in your own stylesheet ? -->
  13.   <style>
  14.     .attribution { font-size: 11px; text-align: center; }
  15.     .attribution a { color: hsl(228, 45%, 44%); }
  16.   </style>
  17. </head>
  18. <div class="dad">
  19.  <div class="text-content">
  20.   <h1>Learn to code <br>
  21.   by watching others</h1>
  22.  
  23.   <p> See how experienced developers solve problems in real-time. <br>
  24.   Watching scripted tutorials is great, but understanding how <br>
  25.   developers think is invaluable. </p>
  26.  </div>
  27.  
  28.    <div class="try">
  29.   <p> <span> Try it free 7 days </span> then $20/mo. thereafter</p>
  30. </div>
  31. <div class="form">
  32.  <div class="form-inside">
  33.   <input type="text" placeholder="First Name">  <br>
  34.  
  35.   <input type="text" placeholder="Last Name">  <br>
  36.  
  37.   <input type="email" placeholder="Email Address"> <br>
  38.  
  39.   <input type="password" placeholder="Password"> <br>
  40.  
  41.   <input type="button" class="button" value="Claim your free trial">  <br>
  42.  
  43.   <p class="terms"> By clicking the button, you are agreeing to our Terms and Services </p>
  44. </div>
  45. </div>
  46.  
  47. </div>
  48.   <footer>
  49.     <p class="attribution">
  50.       Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
  51.       Coded by <a href="#">Your Name Here</a>.
  52.     </p>
  53.   </footer>
  54. </body>
  55. </html>