-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 831 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 831 Bytes
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
dia<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Full-Screen GIF</title>
<style>
* {
margin: 0;
padding: 0;
overflow: hidden;
}
img {
width: 100vw;
height: 100vh;
object-fit: cover;
}
</style>
</head>
<body>
<img src="https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExcGdtZ3p1N24yb294cXc2ZjhsbmxoeHk3azQ1YmxmbHZwZ3c4N2YxYiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/EiOaxPC9pBZjG/giphy.gif" alt="Prank GIF">
<audio autoplay loop muted>
<source src="media/Sonic 3 Live and Learn (Extended).mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>