-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
34 lines (33 loc) · 1.13 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/splash.css" />
<title>라이언타임</title>
</head>
<body>
<div class="container">
<div class="statusBar">
<div class="statusBarLeft">
<img
src="./images/Mobile_Signal.png"
alt="statusBarMobile"
/>
<img src="./images/Wifi.png" alt="statusBarWifi" />
<img src="./images/battery.png" alt="statusBarBattery" />
</div>
</div>
<div class="logo">
<img
src="./images/logo-lion.png"
alt="LionTime logo"
/>
<div>LION TIME</div>
</div>
</div>
<script src="./js/splash.js"></script>
</body>
</html>