-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstellation_birth.html
More file actions
76 lines (68 loc) · 2.4 KB
/
constellation_birth.html
File metadata and controls
76 lines (68 loc) · 2.4 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="image/icon.png" />
<link rel="icon" type="image/png" href="image/icon.png" sizes="180x180" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>탄생 별자리</title>
<link rel="stylesheet" href="css/constellation_birth.css" type="text/css">
</head>
<body background="image/main_background.jpg">
<div class="logo">
<a href="index.html">
<img src="image/main_logo.png" alt="Logo">
</a>
</div>
<div class="headline">
<h1>"이곳은 탄생별자리들의 집."</h1>
<h2>당신의 탄생별자리를 클릭해보세요!</h2>
</div>
<div class="stella">
<h1>***</h1>
</div>
<div class="birth">
<a class="aquarius" href="aquarius.html">
<img src="image/char_aquarius.png" width=210 height=210>
</a>
<a class="pisces" href="pisces.html">
<img src="image/char_pisces.png" width=210 height=210>
</a>
<a class="aries" href="aries.html">
<img src="image/char_aries.png" width=210 height=210>
</a>
<a class="taures" href="taurus.html">
<img src="image/char_taurus.png" width=210 height=210>
</a>
<a class="gemini" href="gemini.html">
<img src="image/char_gemini.png" width=210 height=210>
</a>
<a class="cancer" href="cancer.html">
<img src="image/char_cancer.png" width=210 height=210>
</a>
<a class="leo" href="leo.html">
<img src="image/char_leo.png" width=210 height=210>
</a>
<a class="virgo" href="virgo.html">
<img src="image/char_virgo.png" width=210 height=210>
</a>
<a class="libra" href="libra.html">
<img src="image/char_libra.png" width=210 height=210>
</a>
<a class="scorpio" href="scorpio.html">
<img src="image/char_scorpio.png" width=210 height=210>
</a>
<a class="sagittarius" href="sagittarius.html">
<img src="image/char_sagittarius.png" width=210 height=210>
</a>
<a class="capricorn" href="capricorn.html">
<img src="image/char_capricorn.png" width=210 height=210>
</a>
</div>
<script src="js/jquery-1.12.4.js"></script>
<script src="js/constellation_birth.js"></script>
</body>
<!-- <script src="js/constellation_birth.js"></script> -->
</html>