-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
131 lines (121 loc) ยท 3.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>์ ์ญ์ผ ๊ณ์ฐ๊ธฐ</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav class="navbar">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand brand" href="https://wormwlrm.github.io/">
<img
src="./assets/white-transparent.png"
class="img-responsive brand-image"
alt="Responsive image"
/>
</a>
</div>
</div>
</nav>
<main class="container-fluid">
<h2 class="title">์ ์ญ์ผ ๊ณ์ฐ๊ธฐ</h2>
<div
id="carousel-example-generic"
class="carousel slide"
data-ride="carousel"
>
<!-- Indicators -->
<ol class="carousel-indicators">
<li
data-target="#carousel-example-generic"
data-slide-to="0"
class="active"
></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="./assets/๋ฌด์ -1.png" alt="..." />
</div>
<div class="item">
<img src="./assets/๋ฌด์ -2.png" alt="..." />
</div>
<div class="item">
<img src="./assets/๋ฌด์ -3.png" alt="..." />
</div>
<div class="item">
<img src="./assets/๋ฌด์ -4.png" alt="..." />
</div>
</div>
<!-- Controls -->
<a
class="left carousel-control"
href="#carousel-example-generic"
role="button"
data-slide="prev"
>
<span
class="glyphicon glyphicon-chevron-left"
aria-hidden="true"
></span>
<span class="sr-only">Previous</span>
</a>
<a
class="right carousel-control"
href="#carousel-example-generic"
role="button"
data-slide="next"
>
<span
class="glyphicon glyphicon-chevron-right"
aria-hidden="true"
></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="download-buttons">
<a
href="https://chrome.google.com/webstore/detail/%EC%A0%84%EC%97%AD%EC%9D%BC-%EA%B3%84%EC%82%B0%EA%B8%B0/obbajbadjgfkacnncdiigaffeajfejih"
target="_blank"
>
<img src="./assets/chrome.png" alt="ํฌ๋กฌ" />
</a>
<a
href="https://addons.mozilla.org/ko/firefox/addon/%EC%A0%84%EC%97%AD%EC%9D%BC-%EA%B3%84%EC%82%B0%EA%B8%B0/"
target="_blank"
>
<img src="./assets/firefox.png" alt="ํ์ด์ดํญ์ค" />
</a>
</div>
</main>
<footer>
Copyright ยฉ2019~ All rights reserved |
<a
href="https://github.com/wormwlrm/military-service-calculator"
target="_blank"
>github</a
>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- ํฉ์ณ์ง๊ณ ์ต์ํ๋ ์ต์ CSS -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"
/>
<!-- ๋ถ๊ฐ์ ์ธ ํ
๋ง -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"
/>
<!-- ํฉ์ณ์ง๊ณ ์ต์ํ๋ ์ต์ ์๋ฐ์คํฌ๋ฆฝํธ -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<!-- Standard button -->
</body>
</html>