-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (71 loc) · 3.31 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>
<head>
<!-- Meta -->
<meta charset="UTF-8"/>
<!-- Title -->
<title>온라인 김구 홍보관</title>
<!-- Link Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- CSS Style -->
<style>
@font-face {
font-family: 'HancomHoonminjeongeumH';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/HancomHoonminjeongeumH.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'HancomHoonminjeongeumH', sans-serif;
font-size: 1.5rem;
background-image: url('static/index/태극기.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
margin: 0;
}
.card-container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-light bg-white fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="static/logo/logo.png" height="70" class="d-inline-block align-text-top" alt="Logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">홈</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="gallery.html">홍보관</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="contributer.html">만든이</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Centered Image -->
<div class="card-container d-flex flex-column align-items-center">
<img src="static/logo/logo_white.png" class="img-fluid" style="width: 80%;">
<div class="d-grid gap-2 col-6 mx-auto" style="margin-top: 2rem; width: 70%;">
<button class="btn btn-outline-light btn-lg" type="button" style="height: 5rem; font-size: 2rem;" onclick="window.location.href='gallery.html';">홍보관 보기</button>
</div>
</div>
<!-- Link Bootstrap JS -->
<script src="https://unpkg.com/@popperjs/core@2/dist/umd/popper.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>