-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
119 lines (107 loc) · 2.13 KB
/
aboutme.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Its me!!!</title>
<style>
html{
height: 100%;
overflow:hidden;
}
body{
color: #fff;
margin: 0;
padding: 0;
perspective: 1px;
transform-style: preserve-3d;
height: 100%;
overflow-y: scroll;
overflow-x: hidden;
}
header{
box-sizing: border-box;
min-height: 100vh;
padding: 30vw 0 5vw;
position:relative;
transform-style: inherit;
width: 100vw;
}
header h1{
margin-top: -100px;
}
header, header::before{
background: 50% 50%/cover;
}
header::before{
bottom:0;
content: "";
left:0;
position: absolute;
right: 0;
top:0;
display: block;
background-image: url("images/me-2.jpg");
background-size: cover;
transform-origin: center center 0;
transform: translateZ(-1px) scale(2);
z-index: -1;
min-height: 100vh;
}
header * {
letter-spacing: 0.2em;
text-align: center;
margin: 0;
padding: 1em 0;
}
footer{
box-sizing: border-box;
min-height: 100vh;
padding: 30vw 0 5vw;
position:absolute;
transform-style: inherit;
width: 100vw;
}
footer h1{
margin-top: -100px;
}
footer, footer::before{
background: 50% 50%/cover;
}
footer::before{
bottom:0;
content: "";
left:0;
position: relative;
right: 0;
top:0;
display: block;
background-image: url("images/me-3.jpg");
background-size: cover;
transform-origin: center center 0;
transform: translateZ(-1px) scale(2);
z-index: -1;
min-height: 100vh;
}
footer * {
letter-spacing: 0.2em;
text-align: center;
margin: 0;
padding: 1em 0;
}
a:hover{
color: black;
text-decoration: none;
}
</style>
</head>
<body>
<header><h1>This ME :)</h1>
<P>hii</P></header>
<footer>
<h1>IF YOU ARE BORED WITH MY PICS</h1>
<P>THEN CLICK ON THE <button><a style="color:rgb(255, 255, 255);" href="index.html">Home</a></button></P>
</footer>
</body>
</html>