-
Notifications
You must be signed in to change notification settings - Fork 0
/
video.html
105 lines (101 loc) · 4.58 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!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>NEWSPAPER CF</title>
<link rel="stylesheet" href="basisstylesheet.css">
<link rel="stylesheet" href="videocontentstylesheet.css">
</head>
<body>
<!--Start of entire container for all content-->
<div class="container">
<!--Start of Header Section with logo, banner 1 and navi -->
<header id="header" class="headersection">
<div class="logo" id="logo">
<img src="img/logo-newspaper-cf.png" alt="NewspaperCFLogo" width="300px">
</div>
<div class="banner1" id="banner1">
<a href="https://www.codefactory.wien"><img src="img/banner-1.png" alt="Banner1" width="525px"></a>
</div>
</header>
<nav class="navigationtop" id="navtop">
<div class="navbar">
<a href="index.html" title="home">Home</a>
<a href="tech.html" title="tech">Tech</a>
<a href="culture.html" title="culture">Culture</a>
<a href="video.html" title="video">Video</a>
</div>
</nav>
<!--End of Header Section with logo, banner 1 and navi -->
<!--Start of the Complete Main Content Section -->
<main class="maincontent" id="maincontentsection">
<!--Maincontent of the website-->
<div class="todaysdate">
<p id="activedate">Todays Date</p>
</div>
<div class="row1" id="rowone">
<!--This is the section of the first flexcontainer-->
<div class="banneraddleft">
<div class="banner2" id="bannertwo"> <!--Right Sidebar first Image-->
<a href="https://www.codefactory.wien"><img src="img/banner-2.png" alt="Banner2" width="235px"></a>
</div>
</div>
<div class="articlesection">
<div class="section1" id="sectionone"> <!--Section Divider Top News-->
<h1>TOP VIDEOS THIS WEEK</h1>
</div>
<div class="section2">
<h2>We have the Top Video's this Week to make you Laugh</h2>
</div>
<div id="articlecontent">
<div id="title2">
<h2> Top Cat Videos</h2>
</div>
<div><iframe width="350" height="250" src="https://www.youtube.com/embed/DXRkXmEK44U" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
<div><iframe width="350" height="250" src="https://www.youtube.com/embed/pOmu0LtcI6Y" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
<div><iframe width="350" height="250" src="https://www.youtube.com/embed/dGFSjKuJfrI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
<div id="title2">
<h2> Top Dog Videos</h2>
</div>
<div><iframe width="350" height="250" src="https://www.youtube.com/embed/AcL0MeVZIxM" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
<div><iframe width="350" height="250" src="https://www.youtube.com/embed/BRMK77NUsyU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
<div><iframe width="350" height="250" src="https://www.youtube.com/embed/GHhFtkGfaWU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
</div>
</div>
<div class="banneraddright">
<div class="banner4" id="bannerfour">
<a href="https://www.codefactory.wien"><img src="img/banner-4.png" alt="Banner4" width="240px"></a>
</div>
</div>
</div>
<main>
<!--End of Main Section -->
<div class="contentspacer"></div>
<footer class="footer">
<div class="navbarbottom">
<a href="index.html" title="home">Home</a>
<a href="tech.html" title="tech">Tech</a>
<a href="culture.html" title="culture">Culture</a>
<a href="video.html" title="video">Video</a>
</div>
<div class="footerlogo">
<img src="img/logo-newspaper-cf.png" alt="NewspaperCFLogo" width="200px">
</div>
<div class="copyright">
<p>© Jamie Slaats - CodeFactory 2019</p>
</div>
</footer>
<script>
var currentDate = new Date();
var day = currentDate.getDate();
var month = currentDate.getMonth() + 1;
var year = currentDate.getFullYear();
var activedate = ("Today is: " + day + "." + month + "." + year);
document.getElementById("activedate").innerHTML=activedate;
console.log("Hello from the Console! :-)")
</script>
</div>
</body>
</html>