-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
177 lines (135 loc) · 5.06 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="https://new-year.spartacodingclub.kr/images/favicon.png">
<meta property="og:title" content="신년운세 by 르탄!" />
<meta property="og:description" content="2021년 띠 별 운세를 알려드립니다" />
<meta property="og:image" content="https://new-year.spartacodingclub.kr/images/ogimage.png" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Yeon+Sung&display=swap" rel="stylesheet">
<script type="text/javascript" src="https://new-year.spartacodingclub.kr/newyear.js"></script>
<title>2021년 신년운세!</title>
<style>
.mytitle {
color: rgb(67, 2, 95);
text-align: center;
margin-top: 100px;
margin-bottom: 50px;
}
.mytitle>h1 {
font-size: 56px;
margin-bottom: 0;
}
body {
background-color: ivory;
background-image: url('https://new-year.spartacodingclub.kr/images/pattern.png');
background-position: 600px 100px;
background-repeat: no-repeat;
}
* {
font-family: 'Yeon Sung', cursive;
}
.rtans>a {
display: block;
width: 150px;
height: 150px;
border: solid 3px rgb(67, 2, 95);
background-color: white;
box-shadow: 0px 0px 10px 0px rgb(67, 2, 95);
border-radius: 150px;
margin: 10px;
background-size: cover;
background-position: center;
color: white;
font-size: 24px;
text-decoration: none;
text-align: center;
}
.rtans>a:hover {
background-color: darkslateblue;
}
.rtan1 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS1.png');
}
.rtan2 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS2.png');
}
.rtan3 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS3.png');
}
.rtan4 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS4.png');
}
.rtan5 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS5.png');
}
.rtan6 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS6.png');
}
.rtan7 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS7.png');
}
.rtan8 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS8.png');
}
.rtan9 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS9.png');
}
.rtan10 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS10.png');
}
.rtan11 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS11.png');
}
.rtan12 {
background-image: url('https://new-year.spartacodingclub.kr/images/yearS12.png');
}
.rtans {
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
width: 1200px;
margin: auto;
}
@media screen and (max-width: 780px) {
body {
background-position: 70px -70px;
background-size: 500px;
}
.rtans {
width: 100%;
}
.mytitle {
margin-top: 20px;
margin-bottom: 20px;
}
.rtans>a {
color: darkred;
}
}
</style>
</head>
<body>
<div class="mytitle">
<h1>2021년 신년운세</h1>
<h2>by SC. 믿거나 말거나~</h2>
</div>
<div class="rtans">
<a class="rtan1" href="result.html?year=1">쥐</a>
<a class="rtan2" href="result.html?year=2">소</a>
<a class="rtan3" href="result.html?year=3">호랑이</a>
<a class="rtan4" href="result.html?year=4">토끼</a>
<a class="rtan5" href="result.html?year=5">용</a>
<a class="rtan6" href="result.html?year=6">뱀</a>
<a class="rtan7" href="result.html?year=7">말</a>
<a class="rtan8" href="result.html?year=8">양</a>
<a class="rtan9" href="result.html?year=9">원숭이</a>
<a class="rtan10" href="result.html?year=10">닭</a>
<a class="rtan11" href="result.html?year=11">개</a>
<a class="rtan12" href="result.html?year=12">돼지</a>
</div>
</body>
</html>