generated from frontendmentorio/intro-component-with-signup-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (74 loc) · 2.65 KB
/
index.html
File metadata and controls
76 lines (74 loc) · 2.65 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!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="./css/main.css" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg=="
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.2/jquery.validate.min.js"
integrity="sha512-UdIMMlVx0HEynClOIFSyOrPggomfhBKJE28LKl8yR3ghkgugPnG6iLfRfHwushZl1MOPSY6TsuBDGPK2X4zYKg=="
crossorigin="anonymous"
></script>
<script src="./js/script.js"></script>
<title>Frontend Mentor | Intro component with sign up form</title>
</head>
<body>
<section class="intro">
<h1 class="intro__header">Learn to code by<br />watching others</h1>
<p class="intro__content">
See how experienced developers solve problems in real-time. Watching
scripted tutorials is great, but understanding how developers think is
invaluable.
</p>
</section>
<section class="main">
<div class="try box">
<span>Try it free 7 days</span> then $20/mo. thereafter
</div>
<div class="signup box">
<form action="#" name="signup" method="POST">
<div class="form-control">
<input type="text" name="firstname" placeholder="First Name" />
</div>
<div class="form-control">
<input type="text" name="lastname" placeholder="Last Name" />
</div>
<div class="form-control">
<input type="email" name="email" placeholder="Email Address" />
</div>
<div class="form-control">
<input type="password" name="password" placeholder="Password" />
</div>
<div class="form-control">
<button type="submit">Claim your free trial</button>
</div>
</form>
<div class="signup__terms">
By clicking the button, you are agreeing to our
<a href="#">Terms and Services</a>
</div>
</div>
</section>
<footer>
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by
<a href="https://github.com/marcel-goldammer/" target="_blank"
>Marcel Goldammer</a
>.
</footer>
</body>
</html>