-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
31 lines (29 loc) · 961 Bytes
/
list.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
<!DOCTYPE html>
<html>
<head>
<title>CS50/p0 - List</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<a href="index.html">Home</a>
<a href="list.html">List</a>
<a href="table.html">Table</a>
<a href="image.html">Image</a>
<h3>Quick mnemonics</h3>
<p>
<ol start="0">
<li>Zoo</li>
<li>aLe</li>
<li>heN</li>
<li>haM</li>
<li id="hare">haRe</li>
<li>hiVe</li>
<li>Bee</li>
<li>Tea</li>
<li>SHoe</li>
<li>Goo</li>
</ol>
</p>
</body>
</html>