Index: index.html |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/index.html |
@@ -0,0 +1,43 @@ |
+<!doctype html> |
+<html lang="en" dir="ltr"> |
+<head> |
+ <!-- website-defaults/includes/meta/standard --> |
+ <meta charset="utf-8"> |
+ <meta http-equiv="x-ua-compatible" content="ie=edge"> |
+ <meta name="viewport" content="width=device-width, initial-scale=1"> |
+ <title>Adblock Plus newsletter signup form</title> |
+ <meta name="description" content="A newsletter sign up form, so users can stay up to date with all things related to Adblock Plus."> |
+ |
+ <!-- Resources --> |
+ <link rel="stylesheet" type="text/css" href="css/main.min.css"> |
+</head> |
+<body> |
+ <div class="outer-container"> |
+ <div class="container phablet-width"> |
+ |
+ <header id="page-header"> |
+ <figure> |
+ <img src="https://eyeo.com/images/backclick/abp-logo.png" srcset="https://eyeo.com/images/backclick/abp-logo.svg 2x" alt="ABP inside red octagon"> |
+ <figcaption>Adblock <strong>Plus</strong></figcaption> |
+ </figure> |
+ <h1>Sign up for the Adblock Plus newsletter</h1> |
+ <p>Stay up to date with all things Adblock Plus</p> |
+ </header> |
+ |
+ <form id="sign-up"> |
+ <label for="email">Email Address *</label> |
+ <input type="email" id="email" name="email" required> |
+ <div class="error-message">Please enter a valid email address</div> |
+ |
+ <label for="fullname">Full name</label> |
+ <input type="text" id="fullname" name="fullname"> |
+ |
+ <button type="submit" class="secondary">Sign Up</button> |
+ </form> |
+ <footer id="page-footer"> |
+ <a href="https://eyeo.com/en/privacy" target="_blank">Privacy Policy</a> |
+ </footer> |
+ </div> |
+ </div> |
+</body> |
+</html> |