-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (91 loc) · 2.59 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
<!DOCTYPE html>
<html>
<head>
<title>Our first HTML page</title>
</head>
<body>
<h1>Our first HTML page</h1>
<h2>Headings and paragraphs</h2>
<h3>Headings</h3>
<p>
This is a paragraph about headings.
Some more text.
</p>
<h2>Lists</h2>
<h3>Unordered lists</h3>
<ul>
<li>List item</li>
<li>Another list item</li>
<li>Yet another list item</li>
<li>One more list item</li>
<li>
Here's a nested list
<ol>
<li>List item</li>
<li>Another list item</li>
<li>Yet another list item</li>
<li>One more list item</li>
<li>
Here's a nested list
<ol>
<li>List item</li>
<li>Another list item</li>
<li>Yet another list item</li>
<li>One more list item</li>
</ol>
</li>
</ol>
</li>
</ul>
<h3>Ordered lists</h3>
<ol>
<li>List item</li>
<li>Another list item</li>
<li>Yet another list item</li>
<li>One more list item</li>
<li>
Here's a nested list
<ul>
<li>List item</li>
<li>Another list item</li>
<li>Yet another list item</li>
<li>One more list item</li>
</ul>
</li>
</ol>
<h2>Emphasizing text</h2>
<p>
<em>This is emphasized text.</em> This is a regular sentence <em>with emphasized text</em>. <strong>This is strongly emphasized text.</strong> <strong><em>This is very strongly emphasized text.</em></strong>
</p>
<p>This will be on a new line.</p>
<h2>Hyperlinks</h2>
<p>
<a href="https://web.engr.oregonstate.edu/~hessro/teaching/cs290-sp21/" target="_blank">This is link to the CS 290 website.</a>
</p>
<p>
<a href="blog.html">Link to code blog</a>
</p>
<p>
<a href="subdir/blog.html">Link to subdirectory code blog</a>
</p>
<p>
<button>This is a button</button>
</p>
<h2>Images</h2>
<p>
<img src="http://placekitten.com/480/480" />
</p>
<p>
<img src="kitty.jpg" />
</p>
<h2>Block vs. inline</h2>
<h3>Inline</h3>
<a href="subdir/blog.html">Link to subdirectory code blog</a>
<img src="kitty.jpg" />
<a href="subdir/blog.html">Link to subdirectory code blog</a>
<a href="subdir/blog.html">Link to subdirectory code blog</a>
<img src="kitty.jpg" />
<a href="subdir/blog.html">Link to subdirectory code blog</a>
<a href="subdir/blog.html">Link to subdirectory code blog</a>
</body>
</html>