-
Notifications
You must be signed in to change notification settings - Fork 2
/
Lists_Exercise_Solution.html
54 lines (53 loc) · 1.15 KB
/
Lists_Exercise_Solution.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
<!--
Author: Lithium Lilly
Series: Web Development for Complete Beginners: Unit 1 Assignment
-->
<!DOCTYPE html>
<html>
<head>
<title>Things I've Learned</title>
</head>
<body>
<h1>Things I've Learned</h1>
<h2>Topics</h2>
<ol>
<li><strong><em>Introduction to Front End</em></strong></li>
<li><strong><em>HTML Basics</em></strong></li>
<li><strong><em>Introducion to MDN</em></strong></li>
<li><strong><em>HTML Boilerpate and Comments</em></strong></li>
<li><strong><em>Basic HTML Tags</em></strong></li>
<li><strong><em>HTML Lists</em></strong></li>
<li><strong><em>HTML Attributes</em></strong></li>
</ol>
<h2>HTML</h2>
<ul>
<li>Stands For <strong>Hyper Text Markup Lanugage</strong></li>
<li>Lots of Tags
<ul>
<li>Boilerplate
<ol>
<li>Doctype</li>
<li>HTML</li>
<li>Head
<ol>
<li>Title</li>
</ol>
</li>
<li>Body</li>
</ol>
</li>
<li>Headings</li>
<li>Paragraph</li>
<li><em>em</em></li>
<li><strong>strong</strong></li>
<li>HTML Attributes
<ol>
<li>img tag</li>
<li>a tag</li>
</ol>
</li>
</ul>
</li>
</ul>
</body>
</html>