-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (63 loc) · 2.07 KB
/
index.html
File metadata and controls
64 lines (63 loc) · 2.07 KB
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="En">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Formulario con Less</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/styles.css" />
<link href="https://fonts.googleapis.com/css?family=Signika:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous">
</head>
<body>
<!-- Container -->
<div class="container">
<!-- Seccion One -->
<section>
<div>
<h3>Join the dark site.</h3>
<h4>We have cookies.</h4>
</div>
<footer>
<div>
<a href="https://twitter.com/J4ASDEV">
<i class="fab fa-twitter-square"></i>
</a>
<a href="https://github.com/J4ASDev">
<i class="fab fa-github"></i>
</a>
<a href="https://medium.com/@jonathanaraujo">
<i class="fab fa-medium"></i>
</a>
</div>
<div>
<span>From </span>
<img src="https://image.flaticon.com/icons/svg/197/197580.svg" alt="Venezuela's flag"/>
<span>by Jonathan Araujo</span>
</div>
</footer>
</section>
<!-- Seccion Two -->
<section>
<form>
<div>
<p>Name</p>
<input class="form-input" type="text" placeholder="Jonathan Araujo" required>
</div>
<div>
<p>Email</p>
<input class="form-input" type="email" placeholder="j4asdev@gmail.com" required>
</div>
<div>
<p>Password</p>
<input class="form-input" type="password" pattern=".{6,}" required>
</div>
<div>
<button type="submit">SIGN UP NOW</button>
<button type="button" class="button-member">I am already member</button>
</div>
</form>
</section>
</div>
</body>
</html>