-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 1.48 KB
/
Copy pathindex.html
File metadata and controls
58 lines (54 loc) · 1.48 KB
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
<html>
<script src="jquery-3.3.1.js"></script>
<script src="typed.js"></script>
<head>
<style>
h1 {
font-size: 200pt;
margin: 17% 0 0;
-webkit-transition: font-size 1s ease;
-moz-transition: font-size 1s ease;
-ms-transition: font-size 1s ease;
-o-transition: font-size 1s ease;
transition: font-size 1s ease;
}
h1:hover {
font-size: 250pt;
}
html {
font-family: 'Arial';
color: white;
background: url("colorful-triangles-background.jpg") center no-repeat;
background-size: cover;
position: relative;
text-align: center;
}
img {
height: 64px;
width: 64px;
position: relative;
cursor: pointer;
webkit-transition-duration: 0.5s;
}
img:hover {
-webkit-filter: invert(100%) !important;
}
.contact{
border: 4px solid black;
text-decoration: none;
transition: all .3s;
border-radius: 10px;
border-width: 5px;
color: black;
}
.contact:hover{
border: 4px solid white;
background-color: white;
}
</style>
</head>
<body>
<h1>Hi I'm Emil</h1>
<p> currently working at @sitevision </p>
</body>
</html>