-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (59 loc) · 2.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/favicon-32x32.png" type="image/x-icon">
<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:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/mobile.css" media="only screen and (max-width: 810px)">
<title>Frontend Mentor | Intro component with sign up form</title>
</head>
<body>
<main class="main">
<section class="main__hero">
<h1 class="main__title">Learn to code by watching others</h1>
<p class="main__description">See how experienced developers solve problems in real-time.</p>
<p class="main__insight">Watching scripted tutorials is great, but uderstanding how developers think is
invaluable.</p>
</section>
<div class="main__form-wrapper">
<button class="main__button">
<strong>Try it free 7 days</strong> then $20/mo. thereafter
</button>
<section class="main__form-section">
<form class="main__form">
<div class="main__input-wrapper">
<input type="text" class="main__input-field" id="first-name" placeholder="First Name">
<img class="input-icon--hidden" src="images/icon-error.svg" alt="Icon error">
<span class="span-hidden">First name cannot be empty</span>
</div>
<div class="main__input-wrapper">
<input type="text" class="main__input-field" id="last-name" placeholder="Last Name">
<img class="input-icon--hidden" src="images/icon-error.svg" alt="Icon error">
<span class="span-hidden">Last name cannot be empty</span>
</div>
<div class="main__input-wrapper">
<input type="email" class="main__input-field" id="email" placeholder="Email Adress">
<img class="input-icon--hidden" src="images/icon-error.svg" alt="Icon error">
<span class="span-hidden">Look like this is not an email</span>
</div>
<div class="main__input-wrapper">
<input type="password" class="main__input-field" id="password" placeholder="Password">
<img class="input-icon--hidden" src="images/icon-error.svg" alt="Icon error">
<span class="span-hidden">Password cannot be empty</span>
</div>
<button type="submit" class="main__button-submit">Claim your free trial</button>
</form>
<p class="main__terms">By clicking the button, you are agreeing to our <span class="main__terms--alert">Terms
and Services</span></p>
</section>
</div>
</main>
<script src="scripts/script.js"></script>
</body>
</html>