-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 721 Bytes
/
index.html
File metadata and controls
28 lines (26 loc) · 721 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
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The Pacman Team</title>
<style type="text/css">
html {
background: url(images/background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.video {
left: 50%;
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<iframe class="video" width="560" height="315" src="https://www.youtube.com/embed/l2M6q_GH_r8"
frameborder="0"></iframe>
</body>
</html>