-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (134 loc) · 4.77 KB
/
index.html
File metadata and controls
148 lines (134 loc) · 4.77 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<title>HTML Cheat Sheet</title>
</head>
<body>
<a href="blog.html">Go to blog</a>
<hr>
<!-- Headings -->
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<!--Paragraph-->
<p>
<!-- spell-checker: disable -->
Lorem ipsum dolor sit amet consectetur adipisicing elit. Reprehenderit, sint.
</p>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. <a href="https://www.google.com/" target="_blank">Minima</a> nobis quidem ea tempore <strong>voluptates</strong> veritatis possimus, <em>earum dolore autem ab ullam voluptatem tenetur, quod deserunt.</em> Aperiam accusamus aspernatur quo pariatur?
<!-- spell-checker: enable -->
</p>
<!--Lists-->
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
<li>List Item 4</li>
<li>List Item 5</li>
</ul>
<ol>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
<li>List Item 4</li>
<li>List Item 5</li>
</ol>
<!-- Table -->
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Liz</strong> García</td>
<td>lizgarciamarin@gmail.com</td>
<td>30</td>
</tr>
<tr>
<td><strong>Lenin</strong> Ortiz</td>
<td>leninortiz@gmail.com</td>
<td>39</td>
</tr>
<tr>
<td><strong>Sofía</strong> Esmeralda</td>
<td>sofiaesmeralda@gmail.com</td>
<td>4</td>
</tr>
</tbody>
</table>
<br>
<hr>
<br>
<!-- Forms -->
<form action="process.php" method="POST">
<div>
<label>First name</label>
<input type="text" name="firstName" placeholder="Enter first name">
</div>
<br>
<div>
<label>Last name</label>
<input type="text" name="last-name" placeholder="Enter last name">
</div>
<br>
<div>
<label>Email</label>
<input type="email" name="email" placeholder="Enter email please">
</div>
<br>
<div>
<label>Message</label>
<textarea name="message" placeholder="Enter your message here please"></textarea>
</div>
<br>
<div>
<label>Gender</label>
<select name="gender">
<option value="none" selected disabled hidden>Select an option</option>
<option value="female">Female</option>
<option value="Male">Male</option>
<option value="other">Other</option>
</select>
</div>
<br>
<div>
<label>Age</label>
<input type="number" name="age" value="30">
</div>
<br>
<div>
<label>Birthday</label>
<input type="date" name="birthday">
</div>
<br>
<div><input type="submit" name="submit" value="Submit!"></div>
</form>
<br>
<!-- Button -->
<div>
<button>Click Me</button>
</div>
<br>
<!-- Image -->
<div>
<a href="https://unsplash.com/es/fotos/un-jarron-blanco-con-algunas-flores-rosadas-MLOWmlGehYw">
<img src="https://plus.unsplash.com/premium_photo-1676478746772-02c9709a32c6?q=80&w=987&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="My Sample Image" width="200">
</a>
</div>
<!-- Quotations -->
<blockquote cite="http://traversymedia.com">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nobis quidem accusantium quam odit saepe harum, sequi, perferendis blanditiis assumenda autem minima! Odio tenetur aliquid aut atque provident veritatis nostrum in!
</blockquote>
<p>The <abbr title="World Wide Web">WWW</abbr> is awesome.</p>
<p><cite>HTML Crash Course</cite> by Brad Traversy</p>
<div style="margin-top:500px"></div>
</body>
</html>