-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhow-i-work.html
69 lines (67 loc) · 2.31 KB
/
how-i-work.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>Fatjon Rrapaj | How I Work</title>
<link
href="https://fonts.googleapis.com/css?family=DM+Sans&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=DM+Sans|Fira+Mono&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="./styles/styles.css" />
<link rel="stylesheet" type="text/css" href="./styles/work.css" />
<link rel="icon" href="./assets/favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<header></header>
<main>
<div class="videoContainer">
<video class="video" autoplay loop muted>
<source src="./assets/hardWork.mp4" type="video/mp4" />
</video>
<div class="videoOverlay"></div>
<div class="videoText">
<p>I work hard</p>
<p>I know what hard work means</p>
<p>Hard work makes me feel accomplished.</p>
</div>
</div>
<div class="videoContainer">
<video class="video" autoplay loop muted>
<source src="./assets/site.mp4" type="video/mp4" />
</video>
<div class="videoOverlay"></div>
<div class="videoText">
<p>I work Fast</p>
<p>While being detail-oriented</p>
<p>The entire website is built in a couple of hours.</p>
</div>
</div>
<div class="videoContainer">
<video class="video" autoplay loop muted>
<source src="./assets/effectively.mp4" type="video/mp4" />
</video>
<div class="videoOverlay"></div>
<div class="videoText">
<p>I work Effectively</p>
<p>The additions on this website could go on forever</p>
<p>
But Perfection kills Progress & YAGNI is always to keep in mind.
</p>
</div>
</div>
</main>
<footer>
<a class="githubLink" href="../assets/FatjonRrapajCV.pdf" download
><img src="../assets/attachment.svg" /> Download my CV</a
>
<a class="githubLink" href="https://github.com/FatjonRrapaj"
><img src="../assets/github.svg" /> Visit my GitHub
</a>
</footer>
<script type="text/javascript" src="./scripts/componentLoader.js"></script>
</body>
</html>