-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 1.61 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>plop's place of poop</title>
<link rel="icon" href="favicon.ico" type="image/png" />
<link href="https://fonts.googleapis.com/css?family=Reem+Kufi|Roboto:300" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.13.1/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/themes/green-white.css">
<style>
#background-video {
width: 100vw;
height: 100vh;
object-fit: cover;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: -1;
}
@media (max-width: 750px) {
#background-video { display: none; }
body {
background: url("https://assets.codepen.io/6093409/river.jpg") no-repeat;
background-size: cover;
}
}
</style>
</head>
<body>
<main>
<div class="intro">Hello, I'm plopobo!</div>
<div class="tagline">Average Dev | Excellent Procrastinator</div>
<div class="icons-social">
<a target="_blank" href="https://github.com/plopobo">
<i class="fab fa-github" aria-hidden="true" title="Github"></i>
<span class="sr-only">Github</span>
</a>
</div>
<video id="background-video" autoplay muted poster="https://raw.githubusercontent.com/plopobo/plopobo.github.io/master/ploptendo.jpg">
<source src="https://github.com/plopobo/plopobo.github.io/raw/master/ploptendo.mp4" type="video/mp4">
<video>
</main>
</body>
</html>