-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
55 lines (51 loc) · 2.7 KB
/
about.html
File metadata and controls
55 lines (51 loc) · 2.7 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="The Last Exam Webtoon">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="mobile-web-app-capable" content="yes">
<title>마지막 시험</title>
<link rel="manifest" href="manifest.json">
<link rel="icon" href="icons/favicon/favicon-16.png" sizes="16x16">
<link rel="icon" href="icons/favicon/favicon-32.png" sizes="32x32">
<link rel="icon" href="icons/favicon/favicon-48.png" sizes="48x48">
<link rel="icon" href="icons/favicon/favicon-64.png" sizes="64x64">
<link rel="icon" href="icons/favicon/favicon-128.png" sizes="128x128">
<link rel="icon" sizes="192x192" href="/icons/android/ic_launcher_xxxhdpi.png">
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="icons/web-touch/apple-touch-icon-60x60-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/web-touch/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/web-touch/apple-touch-icon-76x76-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/web-touch/apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/web-touch/apple-touch-icon-120x120-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/web-touch/apple-touch-icon-144x144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/web-touch/apple-touch-icon-152x152-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="icons/web-touch/apple-touch-icon-iphone-precomposed.png">
<link rel="apple-touch-icon" href="icons/web-touch/apple-touch-icon-iphone.png">
<link href="css/ratchet.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script type="text/javascript" src="js/ratchet.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</head>
<body>
<div class="content bg" id="about">
</div>
<nav class="bar bar-tab">
<a class="tab-item" href="/">
<span class="icon icon-home"></span>
<span class="tab-label">Home</span>
</a>
<a class="tab-item" href="webtoon.html">
<span class="icon icon-star"></span>
<span class="tab-label">Webtoon</span>
</a>
<a class="tab-item active" href="#">
<span class="icon icon-person"></span>
<span class="tab-label">About</span>
</a>
</nav>
</body>
</html>