-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (46 loc) · 1.51 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
<!doctype html>
<html>
<head>
<title>cuhlet</title>
<link rel="icon" href="/favicon.ico">
<style type="text/css">
html { overflow-y: hidden; }
@font-face { font-family: Teko; font-weight:medium; src: url('Teko.ttf');}
.center {
display: block;
margin-left: auto;
margin-right: auto;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
/* portrait mode */
@media screen and (orientation: portrait) {
.center {
width: auto;
height: 50%;
}
}
/* landscape mode */
@media screen and (orientation: landscape) {
.center {
width: 50%;
height: auto;
}
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
</head>
<body style="background-color:#141414;">
<img src="cdn\img\IMG_20240628_205651.jpg" class="center">
<div class="centered"><h1 style="text-align:center; font-family:Teko; color:white; font-size:300%;"> lil cuhsy </h1></div>
</body>
</html>