-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (40 loc) · 1.77 KB
/
index.html
File metadata and controls
51 lines (40 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon"
type="image/png"
href="images/favicon.png">
<link rel="stylesheet" href="css/styles.css" />
<title>Social.Ly</title>
<script defer src="js/script.js"></script>
</head>
<body>
<main>
<section>
<img src="images/social-ly.svg" alt="Social.ly">
<h1>Get More From Your <span>Content</span>.</h1>
<p>Social.Ly helps you optimize your brands’ publications to reach a larger audience, integrating social content with your website.</p>
</section>
<form action="#" method="POST">
<h2>Sign up to get your free trial today!</h2>
<p class="info">Limited Offer</p>
<label for="name">Name</label>
<input type="text" name="name" id="name" placeholder="Enter your name" required>
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="Enter your email" required>
<input type="checkbox" required name="terms" id="terms">
<label for="terms">I agree to the <a href="#">terms and conditions</a></label>
<button type="submit">Start My Free Trial</button>
</form>
</main>
<dialog>
<img src="images/welcome.png" alt="Welcome!">
<h3>Welcome, <span></span>!</h3>
<p>Thanks for filling out the form. A confirmation email has been sent to your <span></span> account.</p>
<span class="close" titl="Close" aria-label="close"></span>
</dialog>
</body>
</html>