-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 1.1 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Tutorial</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<h1>Front page</h1>
<!--Link to a video locally. This loads slower on the webpage and takes more space on the server.-->
<!-- <video autoplay controls> -->
<!--You can add multiple source tags here that link to different formats of the video. The browser will choose the format that it supports! Yay!-->
<!-- <source src="videos/tutorial.mp4" type="video/mp4"> -->
<!-- Your browser does not support mp4 videos, change browser! -->
<!-- </video> -->
<div class="videowrapper">
<!--We deleted the height and width as that is set in the CSS code-->
<iframe src="https://www.youtube.com/embed/pm5OVxpul48" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</body>
</html>