-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathShows.html
More file actions
34 lines (33 loc) · 1.72 KB
/
Shows.html
File metadata and controls
34 lines (33 loc) · 1.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Foods</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<article>
<header>
<h3> These are my favorite Shows (Subject to Change)</h3>
</header>
</article>
<header class="container"> <!--Header is a semantic element that is a placeholder elements to place elements such as nav bars, brand, logo, anything that would go on top of the webpage -->
<nav>
<!--Nav bar element-->
<ul> <!--Unordered List-->
<li>
<a href="https://www.naruget.tv/">Naruto</a>
</li> <!--List Item-->
<li>
<a href="https://www.bing.com/videos/search?q=Watch+Looney+toons&qpvt=Watch+Looney+toons&view=detail&mid=AA4AF5F3A7C25E7B66C6AA4AF5F3A7C25E7B66C6&&FORM=VRDGAR&ru=%2Fvideos%2Fsearch%3Fq%3DWatch%2BLooney%2Btoons%26qpvt%3DWatch%2BLooney%2Btoons%26FORM%3DVDRE">Looney Tunes</a>
</li>
<li>
<a href="https://www.funimation.com/watchattackontitan/?msclkid=37f9d8156c57110d9f95ba4a41ea2ff6&utm_source=bing&utm_medium=cpc&utm_campaign=Paid_Google_Web_US-CA_Shows-Tier-1-Prospecting&utm_term=Attack%20On%20Titan&utm_content=Attack%20On%20Titan">Attack on Titan</a>
</li>
</ul>
</nav>
</header>
</body>
</html>