-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
57 lines (46 loc) · 1.36 KB
/
index2.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
<!DOCTYPE html>
<html>
<head>
<title>HTML Cheat Sheet</title>
</head>
<body>
<!-- Heading styles -->
<h1>Heading One</h1>
<h2>Heading Two</h2>
<h3>Heading Three</h3>
<h4>Heading Four</h4>
<h5>Heaading Five</h5>
<h6>Heading Six</h6>
<!-- Paragraph -->
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia harum nesciunt iure totam eum officia ex
porro provident, asperiores illo ipsam molestias dolores itaque est similique illum odit dolor magni.
</p>
<p>
Strong tag: Changes weight of font -- <strong>Default is BOLD</strong>
</p>
<p>
em tag: text emphasis -- <em>Default is ITALICS</em>
</p>
<p>
a href=" ": format for link surrounding location with quotes like "a location or web URL"
Example: <a href="index3.html">Location for next group of tags</a>
Add <em>target="_blank"</em> to force link to be opened in a new window
</p>
<!-- Lists -->
Unordered bullet list
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ul>
Ordered Lists
<ol>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ol>
</body>
</html>