-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (64 loc) · 1.82 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
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>함봉선도서관</title>
<script src="scripts/disable_right_click.js"></script>
</head>
<body oncontextmenu="return disableRightClick();">
<h1>함봉선도서관</h1>
<img alt="에센스 한영사전과 한국인 이 뽑은 김 소월 의 명시 모음집" src=images/IMG_20240123_161350.jpg>
<h2>어서 오세요</h2>
<p><a href="registrationpage.html">회원가입</a> ✻ <a href="loginpage.html">로그인</a></p>
<div class="footer">
<div id="col-0"><li>© All rights reserved</li></div>
</div>
<style>
@media only screen and (min-width: 400px) {
a {
color: white;
text-decoration: none;
}
body {
background-color: blueviolet;
}
#col-0 li {
list-style-type: none;
margin-right: 20px;
float: right;
color: white;
text-align: left;
text-decoration: none;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: black;
}
h1 {
color: white;
text-align: center;
margin-top: 100px;
}
h2 {
color: white;
text-align: center;
margin-top: 10px;
}
img {
margin-left: 600px;
margin-top: 10px;
height: 244.8px;
width: 326.4px;
}
p {
color: white;
text-align: center;
}
}
</style>
</body>
</html>