-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (83 loc) · 4.34 KB
/
index.html
File metadata and controls
91 lines (83 loc) · 4.34 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>천로역정 : The Pilgrim's Progress</title>
<meta property="og:title" content="천로역정 : The Pilgrim's Progress">
<meta property="og:type" content="website">
<meta property="og:image" content="assets/img/logo.png">
<meta property="og:description" content="멸망도시를 떠나 천국도시로 향하는 크리스천의 이야기">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Roboto:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link rel="stylesheet" href="assets/vendor/jquery/css/jquery.fullPage.css">
<!-- Template Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet">
<!-- =======================================================
* Template Name: UpConstruction
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<header id="header" class="header d-flex align-items-center">
<div class="container-fluid container-xl d-flex align-items-center justify-content-between">
<div class="logo d-flex align-items-center">
<h1>천로역정</h1>
</div>
<nav id="navbar" class="navbar">
<ul><li><a href="/">맨 위로</a></li></ul>
</nav>
</div>
</header>
<div class="fullpage">
<div id="hero" class="hero section">
<div class="info d-flex align-items-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6 text-center">
<h2>The Pilgrim's Progress</h2>
<p>희망도, 기쁨도 없는 멸망도시에서 살아가던 ‘크리스천’은 어느 날, 한 권의 책을 통해 천국도시가 존재하며, 곧 멸망도시가 불바다로 변할 것이라는 사실을 알게 된다.</p>
<p>(율법언덕부터 해설자의 집 전까지)</p>
<a href="https://riddle-game.github.io/pilgrim-progress/torah-hill.html" class="btn-get-started"><b>시작하기</b></a>
</div>
</div>
</div>
</div>
</div>
<footer id="footer" class="footer section">
<div class="footer-legal container-fluid text-center position-relative">
<div class="container">
<div class="copyright">
© Copyright <strong><span>Riddle Game</span></strong>. All Rights Reserved
</div>
<div class="credits">
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</div>
</footer>
</div>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery/jquery-3.7.1.min.js"></script>
<script src="assets/vendor/jquery/js/jquery.fullPage.js"></script>
<script>
$(function() {
var page = $('.fullpage').fullpage({
navigation : true,
navigationPosition : 'right'
});
})
</script>
</body>
</html>