-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (61 loc) · 2.52 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
<!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">
<title>Frontend Mentor | Intro component with sign up form</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<article>
<h1>
Learn to code by watching others
</h1>
<p>
See how experienced developers solve problems in real-time. Watching scripted tutorials is great,
but understanding how developers think is invaluable.
</p>
</article>
<section>
<div class="signup-header">
<p>
<span> Try it free 7 days</span> then $20/mo. thereafter
</p>
</div>
<div>
<form action="index.html" method="post">
<div class="form-control">
<input type="text" name="firstName" id="first-name" placeholder="First Name" aria-label="first name">
<object data="images/icon-error.svg" type="image/svg+xml"> Your browser does not support svg files</object>
<em>Error message</em>
</div>
<div class="form-control">
<input type="email" name="email" id="email" placeholder="Email Address" aria-label="email">
<object data="images/icon-error.svg" type="image/svg+xml">Your browser does not support svg files</object>
<em>Error message</em>
</div>
<div class="form-control">
<input type="password" name="password" id="password" placeholder="Password" minlength="8" aria-label="password">
<object data="images/icon-error.svg" type="image/svg+xml">Your browser does not support svg files</object>
<em>Error message</em>
</div>
<button type="submit" id="submit">claim your free trial</button>
<p class="terms">
By clicking the button, you are agreeing to our <a href="index.html">Terms and Services</a>
</p>
</form>
</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="https://github.com/Ayoub-321">AISSOU Ayoub</a>.
</p>
</footer>
<script src="app.js"></script>
</body>
</html>