-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (86 loc) · 2.82 KB
/
index.html
File metadata and controls
92 lines (86 loc) · 2.82 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
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
<html>
<head>
<title>이상한생활</title>
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
#f3dq {
background-color: #cdcdcd;
height: 100px;
width: 100%;
}
#f23b {
background-color: #ccac25;
height: 100%;
width: 160px;
}
.fu29 {
height: auto;
width: 100%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#g3ff {
text-decoration: none;
color: black;
}
#g3ff:hover {
color: gray;
}
#f48p {
height: 100%;
width: 15%;
position: relative;
float: left;
}
#f49p {
height: 100%;
width: 15%;
float: left;
text-align: center;
}
</style>
</head>
<body>
<div id="f3dq">
<div id="f48p">
<img src="a.png" class="fu29">
</div>
<div id="f49p" class="hf92"></div>
<div id="f49p" class="hf93">
<a href="https://www.youtube.com/channel/UCqnox9fYvFSPuRiviUdmsxw" target="_blank" id="g3ff">이상한생활<br>유튜브</a>
</div>
<div id="f49p" class="hf94">
<a href="https://www.roblox.com/users/2462242289/profile" target="_blank" id="g3ff">7777의<br>로블록스<br>프로필</a>
</div>
<div id="f49p" class="hf95">
<a href="https://www.roblox.com/users/3118675533/profile" target="_blank" id="g3ff">DX의<br>로블록스<br>프로필</a>
</div>
</div>
<div id="f23b">
<a href="https://paraxeni-zoi.p-e.kr/dxcommunity">DX&7777의 커뮤니티</a>
<a href="https://paraxeni-zoi.p-e.kr/7777">7777의 할말</a>
</div>
<script>
window.addEventListener('resize', function () {
const x = window.innerWidth;
const y = window.innerHeight;
if (x < 700) {
document.querySelector(".hf92").style.display = "none";
document.querySelector(".hf93").style.display = "none";
document.querySelector(".hf94").style.display = "none";
document.querySelector(".hf95").style.display = "none";
} else {
document.querySelector(".hf92").style.display = "";
document.querySelector(".hf93").style.display = "";
document.querySelector(".hf94").style.display = "";
document.querySelector(".hf95").style.display = "";
}
});
</script>
</body>
</html>