forked from marufropy/htmlBasics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
166 lines (151 loc) · 4.05 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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<title>HTML Cheat Sheet</title>
<style>
#main-header{
background-color:black;
color:white;
}
#main-footer{
text-align: center;
font-size:18px;
}
</head>
<body>
<a href="blog.html">Go to blog</a>
<hr>
<!-- Headings -->
<h1>Heading One</h1>
<h2>Heading Two</h2>
<h3>Heading Three</h3>
<h4>Heading Four</h4>
<h5>Heading Five</h5>
<h6>Heading Six</h6>
<!-- Paragraph -->
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor <strong>incididunt ut labore</strong> et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud <em>exercitation ullamco</em> laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, <a href="http://google.com" target="_blank">sed do eiusmod</a>
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<!-- Lists -->
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
<li>List Item 4</li>
</ul>
<ol>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
<li>List Item 4</li>
</ol>
<!-- Table -->
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Brad Traversy</td>
<td>brad@something.com</td>
<td>35</td>
</tr>
<tr>
<td>John Doe</td>
<td>jdoe@something.com</td>
<td>45</td>
</tr>
<tr>
<td>Sara Williams</td>
<td>sara@something.com</td>
<td>25</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="lastName">
</div>
<br>
<div>
<label>Email</label>
<input type="email" name="email">
</div>
<br>
<div>
<label>Message</label>
<textarea name="message"></textarea>
</div>
<br>
<div>
<label>Gender</label>
<select name="gender">
<option value="male">Male</option>
<option value="female">Female</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>
<input type="submit" name="submit" value="Submit">
</form>
<!-- Button -->
<button>Click Me</button>
<br>
<!-- Image -->
<a href="images/sample.jpg">
<img src="images/sample.jpg" alt="My Sample Image" width="200">
</a>
<!-- Quotations -->
<blockquote cite="http://traversymedia.com">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</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>
<footer id="main-footer">
<p>Copyright © 2017, My Website</p>
</footer>
</body>
</html>