-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (113 loc) · 3.99 KB
/
index.html
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!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
href="https://fonts.googleapis.com/css?family=Poppins:400,500,600,700"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.css" />
<title>Frontend Mentor | Intro component with sign up form</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<img
class="background-desktop"
src="./images/bg-intro-desktop.png"
alt=""
/>
<img
class="background-mobile"
src="./images/bg-intro-mobile.png"
alt=""
/>
<div class="container">
<div class="content">
<div class="content__title">
Learn to code by watching others
</div>
<div class="content__text">
See how experienced developers solve problems in real-time.
Watching scripted tutorials is great, but understanding how
developers think is invaluable.
</div>
</div>
<div class="form">
<div class="form__title">
<span> Try it free 7 days </span> then $20/mo. thereafter
</div>
<form class="form__body" action="/mail.php" method="POST">
<input
name="name"
data-validate-field="name"
type="text"
placeholder="First Name"
required
/>
<input
name="lastName"
data-validate-field="lastName"
type="text"
placeholder="Last Name"
required
/>
<input
name="email"
data-validate-field="email"
type="email"
placeholder="Email Address"
required
/>
<input
name="tel"
data-validate-field="tel"
type="tel"
placeholder="+38 (___) ___-__-__"
/>
<input
name="password"
data-validate-field="password"
type="password"
placeholder="Password "
required
/>
<button type="submit">Claim your free trial</button>
<p>
By clicking the button, you are agreeing to our
<a href="#"> Terms and Services </a>
</p>
</form>
</div>
</div>
<footer>
<p class="attribution">
Challenge by
<a
href="https://www.frontendmentor.io?ref=challenge"
target="_blank"
>Frontend Mentor</a
>. Coded by <a href="#">Your Name Here</a>.
</p>
</footer>
<script src="./libs/inputmask.js"></script>
<script src="./libs/just-validate.min.js"></script>
<script src="./js/app.js"></script>
</body>
</html>