-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathimages-video.html
More file actions
19 lines (19 loc) · 923 Bytes
/
images-video.html
File metadata and controls
19 lines (19 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<title>HTML Boilerplate</title>
<meta name="author" value="Alexandra Dedok" />
<meta name="description" value="Learning videos with HTML/CSS for fun and games and websites" />
<meta name="keywords" content="HTML, CSS" />
</head>
<body>
<!-- Here goes content. None found.-->
<h1>Some great videos!</h1>
<h2>Random smiley dude from YouTube:</h2>
<iframe width="560" height="315" src="https://www.youtube.com/embed/OnUx3zyVGeY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<h2>Video by Anna Nekrashevich from Pexels:</h2>
<video height="800px" controls>
<source src="images/pexels-anna-nekrashevich-7814423.mp4" type="video/mp4" />
</video>
</body>
</html>