-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (52 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Samuel Amaro Do Nascimento"/>
<meta name="description" content="Form Intro component with sign-up"/>
<meta name="keywords" content="HTML5, CSS3, JS, es6, exe, form, sign-up form, landing-page"/>
<link rel="stylesheet" href="./css/normalize.css" type="text/css"/>
<link rel="stylesheet" href="./css/styles.css" type="text/css"/>
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Intro component with sign up form</title>
</head>
<body>
<main class="main">
<article class="main__text-content">
<h1 class="title">Learn to code by watching others</h1>
<p class="description">See how experienced developers solve problems in real-time. Watching scripted tutorials is great, but understanding how developers think is invaluable.</p>
</article>
<aside class="main__side-content">
<p class="main__price-announcement">
<strong class="price-promo">Try it free 7 days</strong> then $20/mo. thereafter
</p>
<form class="form" name="user-registration">
<div class="form__row-container">
<label for="first-name" class="label">Entre com seu nome</label>
<input type="text" name="first-name" class="input input__text" placeholder="First Name" data-name="First Name" title="Entre com seu primeiro nome" aria-required="false" aria-label="Entre com seu nome"/>
</div>
<div class="form__row-container">
<label for="last-name" class="label">Entre com seu ultimo nome</label>
<input type="text" name="last-name" class="input input__text" placeholder="Last Name" data-name="Last Name" title="Entre com seu ultimo nome" aria-required="false" aria-label="Entre com seu ultimo nome"/>
</div>
<div class="form__row-container">
<label for="email-address" class="label">Entre com seu endereço de email</label>
<input type="email" name="email-address" class="input input__email" placeholder="Email Address" data-name="Email" title="Entre com seu endereço de email" aria-required="false" aria-label="Entre com seu endereço de email"/>
</div>
<div class="form__row-container">
<label for="password" class="label">Entre com sua senha</label>
<input type="password" name="password" class="input input__password" placeholder="Password" data-name="Password" title="Entre com uma senha" aria-required="false" aria-label="Entre com sua senha"/>
</div>
<div class="form__row-container">
<button type="submit" class="btn-submit" title="Submit Registration">Claim your free trial</button>
</div>
<footer class="form__footer">
<p class="form__description-footer">By clicking the button, you are agreeing to our <strong class="terms-services">Terms and Services</strong></p>
</footer>
</form>
</aside>
</main>
<script src="./javascript/index.js"></script>
</body>
</html>