-
Notifications
You must be signed in to change notification settings - Fork 0
/
favorites.html
68 lines (68 loc) · 2.04 KB
/
favorites.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Favorites</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
</head>
<body class="container" style="background-color: rgb(127, 189, 127)">
<nav
class="navbar navbar-expand-lg bg-body-tertiary"
style="background-color: rgb(229, 229, 229)"
>
<div class="container-fluid">
<a class="navbar-brand" href="biography.html">Biography</a>
</div>
<div class="container-fluid">
<a class="navbar-brand" href="schedule.html">Schedule</a>
</div>
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Home</a>
</div>
</nav>
<div class="Favorites">
<div class="row">
<div class="col-sm-4">
<h3>Favorite sites</h3>
<ul>
<li>
<a href="https://www.youtube.com/">https://www.youtube.com/</a>
</li>
<li>
<a href="https://www.nytimes.com/games/wordle/index.html"
>https://www.nytimes.com/games/wordle/index.html</a
>
</li>
<li>
<a href="https://www.mackenzieriverpizza.com/"
>https://www.mackenzieriverpizza.com/</a
>
</li>
</ul>
</div>
<div class="col-sm-4">
<h3>Favorite Movies</h3>
<ul>
<li>Deadpool</li>
<li>Hunger Games</li>
<li>Star Wars</li>
</ul>
</div>
<div class="col-sm-4">
<h3>Favorite things to do</h3>
<ol>
<li>Hang out with friends</li>
<li>Play video games</li>
<li>Watch tv</li>
</ol>
</div>
</div>
</div>
</body>
</html>