-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml_boilerplate.html
49 lines (40 loc) · 1.2 KB
/
html_boilerplate.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Website</title>
</head>
<body>
<h1>Hello World!</h1>
<h1>This is an h1 heading.</h1>
<h2>This is an h2 heading.</h2>
<h3>This is an h3 heading.</h3>
<h4>This is an h4 heading.</h4>
<h5>This is an h5 heading.</h5>
<h6>This is an h6 heading.</h6>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing 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.
</p>
<strong>Lorem ipsum dolor</strong>
<strong>Badumtss</strong>
<em>The "em" element makes the element italicized</em>
<!-- this is how to write an HTML comment-->
<!-- ul means unordered list -->
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<!-- ol means ordered list -->
<ol>
<li>Item a</li>
<li>Item b</li>
<li>Item c</li>
</ol>
</body>
</html>