-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (36 loc) · 998 Bytes
/
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>숙메추real 페이지</title>
<style>
body {
background-color: rgb(27, 18, 128); /* 푸른 배경 */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
a {
font-size: 2em;
color: white;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
img {
width: 80px;
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<a href="/database/home.html" target="_blank">숙메추real</a> <!-- 원하는 페이지 링크로 변경 -->
<img src="/database/img/song1-removebg-preview (1).png" alt="눈송이">
</body>
</html>