-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmedia.html
More file actions
149 lines (149 loc) · 4.59 KB
/
media.html
File metadata and controls
149 lines (149 loc) · 4.59 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!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" />
<meta name="description" content="A website dedicated to Nikola Tesla" />
<meta
name="keywords"
content="Tesla, inventor, inventions, scientist, science"
/>
<meta name="author" content="Jurica Puljiz" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="shortcut icon" href="assets/images/favicon.png" />
<title>Nikola Tesla - A Man Who Changed the World</title>
</head>
<body>
<!-- Top page navigation section -->
<div class="topnav">
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="joinus.html">Quotes</a>
</li>
<li>
<a href="media.html">Media </a>
</li>
</ul>
</nav>
</div>
<header>
<h2 id="title">Nikola Tesla - A Man Who Changed the World</h2>
</header>
<!--Section with videos from Youtube (external links "iframe")-->
<section>
<h2 id="documentaries">Documentaries and videos about Tesla</h2>
<br />
<!--Each video container is wrapped in another div element for easier CSS editing-->
<div class="videowrapper">
<div class="videocontainer">
<iframe
src="https://www.youtube.com/embed/zzS-PFMe_Mk"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
>
</iframe>
</div>
</div>
<div class="videowrapper">
<div class="videocontainer">
<iframe
src="https://www.youtube.com/embed/Ok8JDXSYw1U"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
>
</iframe>
</div>
</div>
<div class="videowrapper">
<div class="videocontainer">
<iframe
src="https://www.youtube.com/embed/TqDem3i9s18"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
>
</iframe>
</div>
</div>
<div class="videowrapper">
<div class="videocontainer">
<iframe
src="https://www.youtube.com/embed/snQl_rmpavg"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
>
</iframe>
</div>
</div>
</section>
<!-- Newsletter Signup form at the bottom of the page -->
<div class="wrapper">
<div id="subscribebox">
<i class="fa fa-envelope fa-4x"></i>
<h3>Our Newsletter</h3>
<form>
<input
type="text"
placeholder="Enter email"
required id="email-input"
aria-labelledby="email-input"
/>
<input type="submit"
value="Subscribe"
id="subscribe-button"
aria-labelledby="subscribe-button"
/>
</form>
</div>
</div>
<!-- Footer html code adapted from "Love Running" project-->
<footer>
<ul class="social-networks">
<li>
<a
href="https://facebook.com"
target="_blank"
rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"
>
<i class="fab fa-facebook"></i>
</a>
</li>
<li>
<a
href="https://youtube.com"
target="_blank"
rel="noopener"
aria-label="Visit our YouTube page (opens in a new tab)"
>
<i class="fab fa-youtube-square"></i>
</a>
</li>
<li>
<a
href="https://instagram.com"
target="_blank"
rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"
>
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
<p class="copyright">© Jurica Puljiz, 2021</p>
</footer>
<!-- font awesome script -->
<script
src="https://kit.fontawesome.com/c7dbda0798.js"
crossorigin="anonymous"
></script>
</body>
</html>