-
Notifications
You must be signed in to change notification settings - Fork 10
/
06-Doge-Friends.html
52 lines (50 loc) · 1.2 KB
/
06-Doge-Friends.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>05 Doge Friends</title>
<link type="text/css" rel="stylesheet" href="styles/06-styles.css" />
</head>
<body>
<header>
<h1>Doge Social Network</h1>
</header>
<nav>
<ul>
<li>
<a href="06-Doge-Home.html">Home</a>
</li>
<li>
<a href="06-Doge-Profile.html">Profile</a>
</li>
<li>
<a href="06-Doge-Friends.html">Friends</a>
</li>
</ul>
</nav>
<hr />
<h2>Friends of Doge</h2>
<hr />
<article>
<ol class="decimal">
<li>
<em>Such Friend</em>
<ul class="none">
<li>best friend</li>
</ul>
</li>
<li>
<em>Many Friends</em>
<ul class="none">
<li>unknown</li>
</ul>
</li>
<li>
<em>Wow</em>
<ul class="none">
<li>yeah, right</li>
</ul>
</li>
</ol>
</article>
</body>
</html>