-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (91 loc) · 2.74 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
<!DOCTYPE html>
<html>
<head>
<title>sch0718.github.io</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="/images/favicon.png" />
<link type="text/css" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link type="text/css" rel="stylesheet" href="/css/commons.css" />
<link type="text/css" rel="stylesheet" href="/css/front.css" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/js/commons.js"></script>
<script type="text/javascript" src="/js/front.js"></script>
<style type="text/css">
html, body {
height: 100%;
}
body {
display: table;
width: 100%;
}
.catchphrase {
width: 100%;
text-align: center;
color: #fff;
font-size: 2.5em;
font-family: Copperplate Gothic Light;
}
</style>
<script type="text/javascript">
// <![CDATA[
$(document).ready(function() {
$(".catchphrase").tick();
});
// ]]>
</script>
</head>
<body class="index">
<!-- [[ START ]] GNB 영역 -->
<header>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span>
</button>
<a class="navbar-brand logo" href="http://www.code-post.com">
code post
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li class="active">
<a href="/">Home</a>
</li>
<li>
<a href="http://13.124.134.142:8080/codepost-core-web/">codepost-core-web examples</a>
</li>
<li>
<a href="https://github.com/sch0718">GitHub</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- [[ END ]] GNB 영역 -->
<!-- [[ START ]] Content 영역 -->
<div id="contentArea" class="index">
<div class="container text-center">
<img src="/images/logo_w.png" />
<div class="catchphrase">IMAGINE & CREATE</div>
</div>
</div>
<!-- [[ END ]] Content 영역 -->
<!-- [[ START ]] Footer 영역 -->
<footer>
<p>code post</p>
</footer>
<!-- [[ END ]] Footer 영역 -->
<!-- [[ START ]] Scroll Up -->
<div class="scroll-top-wrapper">
<span class="scroll-top-inner">
<i class="glyphicon glyphicon-arrow-up"></i>
</span>
</div>
<!-- [[ END ]] Scroll Up -->
</body>
</html>