-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
89 lines (71 loc) · 2 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
<!DOCTYPE html>
<html>
<!-- This is a comment -->
<head>
<title>My first web page</title>
</head>
<body>
<h1>This is my first web page!!!</h1>
<h2>Headings and paragraphs</h2>
<h3>Subsection about headings</h3>
<p>This is a paragraph</p>
<h2 id="lists">Lists</h2>
<h3>Unordered lists</h3>
<ul>
<li>This is a list item</li>
<li>This is another list item</li>
<li>This is a third list item</li>
<li>This is yet another list item</li>
<li>
Here's a nested list:
<ul>
<li>This is a list item</li>
<li>This is another list item</li>
<li>This is a third list item</li>
<li>This is yet another list item</li>
</ul>
</li>
</ul>
<h3>Ordered lists</h3>
<ol>
<li>This is a list item</li>
<li>This is another list item</li>
<li>This is a third list item</li>
<li>This is yet another list item</li>
<li>
Here's a nested list:
<ul>
<li>This is a list item</li>
<li>This is another list item</li>
<li>This is a third list item</li>
<li>This is yet another list item</li>
</ul>
</li>
</ol>
<h2 id="emphasized">Emphasized text</h2>
<p>
This text is <em>emphasized</em>.
</p>
<p>
This text is <strong>strongly emphasized</strong>.
</p>
<p>
This text is <em><strong>very strongly emphasized</strong></em>.
</p>
<h2>Links</h2>
<p>
<a href="https://web.engr.oregonstate.edu/~hessro/teaching/cs290-f20/" target="_blank">CS 290 website</a>
</p>
<p>
<a href="#lists">Jump to "Lists" section</a>
</p>
<p>
<a href="blog.html">Go to my code blog</a>
</p>
<p>
<a href="nested/blog.html">Go to my nested code blog</a>
</p>
<h2>Images</h2>
This text is <img src="http://placekitten.com/480/480" alt="A very cute kitty" /> surrounding the image. Here's some more text.
</body>
</html>