-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 2.24 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
<!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="./src/img/favicon-32x32.png">
<title>Frontend Mentor | Intro component with sign up form</title>
<link rel="stylesheet" href="./css/styles.css">
<script src="./js/main.js" defer></script>
</head>
<body>
<main class="main_container">
<section class="info_container">
<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>
</section>
<section class="register_container">
<article class="cost_mouth">
<p>Try it free 7 days <span>then $20/mo. thereafter</span></p>
</article>
<form action="#" class="form_container">
<div class="input_item">
<input type="text" class="input" id="input_first" placeholder="First Name">
<div class="error"></div>
<p class="msg_error">First Name cannot be empty</p>
</div>
<div class="input_item">
<input type="text" class="input"id="input_last" placeholder="Last Name">
<div class="error"></div>
<p class="msg_error">Last Name cannot be empty</p>
</div>
<div class="input_item">
<input type="email" class="input" placeholder="Email Address">
<div class="error"></div>
<p class="msg_error">Looks like this not an email</p>
</div>
<div class="input_item">
<input type="password" class="input" placeholder="Password">
<div class="error"></div>
<p class="msg_error">Password cannot be empty</p>
</div>
<input type="submit" class="btn_claim" value="Claim your free trial">
<label>By clicking the button, you are agreeing to our <span>Terms and Services</span></label>
</form>
</section>
</main>
<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/UrielBucio">Uriel Bucio</a>.
</p>
</footer>
</body>
</html>