This repository was archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathyoutube.html
73 lines (68 loc) · 3.28 KB
/
youtube.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BBA - Bits and Bytes Association</title>
<link rel="icon" type="image/png" href="favicon.ico">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/material-icons.css">
<link rel="stylesheet" href="assets/css/user.css">
<link rel="stylesheet" href="assets/css/photos.css">
<link rel="stylesheet" href="assets/css/socialnavigation.css">
</head>
<img src="assets/img/main banner.png" style="width: 100%;" alt="">
<div w3-include-html="./header.html"></div>
<section class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1>Youtube content</h1>
</div>
</div>
</section>
<section class="container">
<div class="row" style="padding: 25px;">
<div class="col-md-8"><iframe width="100%" height="315" src="https://www.youtube.com/embed/2zivGWdP_gY"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe></div>
<div class="col-md-4"><iframe width="100%" height="315" src="https://www.youtube.com/embed/uXsH9IgCh2A"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe></div>
</div>
<div class="row" style="padding: 25px;">
<div class="col-md-4"><iframe width="100%" height="315" src="https://www.youtube.com/embed/qVbWVRhjYGE"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe></div>
<div class="col-md-4"><iframe width="100%" height="315" src="https://www.youtube.com/embed/fAbn_TorqrQ"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe></div>
<div class="col-md-4"><iframe width="100%" height="315" src="https://www.youtube.com/embed/3qJwN2CENtg"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe></div>
</div>
</section>
<div w3-include-html="./footer.html">
</div>
<script src="https://www.w3schools.com/lib/w3data.js"></script>
<script>
w3IncludeHTML();
</script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-G9JRT95H6J"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-G9JRT95H6J');
</script>
</body>
</html>