-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (59 loc) · 3.56 KB
/
index.html
File metadata and controls
62 lines (59 loc) · 3.56 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
52
53
54
55
56
57
58
59
60
61
62
<!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="./images/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./normalize.css">
<link rel="stylesheet" href="./styles.css">
<script src="./index.js" defer></script>
<title>Frontend Mentor | Intro component with sign up form</title>
</head>
<body>
<div class="content-container">
<main>
<h1>Learn to code by watching others</h1>
<p class="spaced-text">See how experienced developers solve problems in real-time. Watching scripted tutorials is great,
but understanding how developers think is invaluable.</p>
</main>
<section>
<p class="call-to-action rounded spaced-text box-shadow"><strong>Try it free 7 days</strong> then $20/mo. thereafter</p>
<div class="form-container rounded box-shadow">
<form action="">
<div class="input-container">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="#FF7979" cx="12" cy="12" r="12"/><rect fill="#FFF" x="11" y="6" width="2" height="9" rx="1"/><rect fill="#FFF" x="11" y="17" width="2" height="2" rx="1"/></g></svg>
<input data-namefield type="text" placeholder="First Name" class="rounded">
<div class="error"></div>
</div>
<div class="input-container">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="#FF7979" cx="12" cy="12" r="12"/><rect fill="#FFF" x="11" y="6" width="2" height="9" rx="1"/><rect fill="#FFF" x="11" y="17" width="2" height="2" rx="1"/></g></svg>
<input data-lastNamefield type="text" placeholder="Last Name" class="rounded">
<div class="error"></div>
</div>
<div class="input-container">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="#FF7979" cx="12" cy="12" r="12"/><rect fill="#FFF" x="11" y="6" width="2" height="9" rx="1"/><rect fill="#FFF" x="11" y="17" width="2" height="2" rx="1"/></g></svg>
<input data-emailfield type="email" placeholder="Email Address" class="rounded">
<div class="error"></div>
</div >
<div class="input-container">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="#FF7979" cx="12" cy="12" r="12"/><rect fill="#FFF" x="11" y="6" width="2" height="9" rx="1"/><rect fill="#FFF" x="11" y="17" width="2" height="2" rx="1"/></g></svg>
<input data-pwfield type="password" placeholder="Password" class="rounded">
<div class="error"></div>
</div >
<input id='submitButton' type="submit" value="CLAIM YOUR FREE TRIAL" class="rounded box-shadow">
</form>
<p class="spaced-text">By clicking the button, you are agreeing to our <a href="">Terms and Services</a></p>
</div>
</section>
</div>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Christopher d'Arcy</a>.
</p>
</footer>
</body>
</html>