-
Notifications
You must be signed in to change notification settings - Fork 0
/
Video.html
79 lines (74 loc) · 3.22 KB
/
Video.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
<!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">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="Styles/style.css">
<title>Tina's Poutine Pub - Video</title>
</head>
<body>
<header>
<div class="container">
<h1>Christine's <span style="color:red">Poutine</span> Pub</h1>
<p> congrats on completing your fist bootstrap page !</p>
</div>
<h2 style="color:green">The friendliest place in your neighborhood with cheese curds</h2>
</header>
<div class="container">
<div class="row">
<div class="col-md-4">This is the first piece of RWD content. </div>
<div class="col-md-4">This is the second piece of RWD content. </div>
<div class="col-md-4">This is the third piece of RWD content. </div>
</div>
</div>
<p></p>
<table width="100%" border="1">
<tr align="center">
<td>This is the first table cell </td>
<td>This is the second table cell </td>
<td>This is the third table cell </td>
</tr>
</table>
<nav>
<ul class="nav-list">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="About.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="food.html">Menu</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.google.com/">Help</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Video.html">Video</a>
</li>
</ul>
</nav>
<main>
<section class="flex-section">
<div class="flex-image">
<iframe width="560" height="315" src="https://www.youtube.com/embed/WUXEeAXywCY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="flex-content">
<h2>Watch Us on Youtube!</h2>
<article>
<h3>Video:</h3>
<p>Silent Night - Kid's Version w/ Lyrics</p>
</article>
</div>
</section>
<button type="button" class="btn btn-lg btn-primary">Order Food</button>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
<script src="Scripts/index.js"></script>
</html>