-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathintro.html
More file actions
44 lines (38 loc) · 1.21 KB
/
intro.html
File metadata and controls
44 lines (38 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Savior : Intro</title>
<link rel="stylesheet" href="./css/intro.css" />
</head>
<body>
<div class="container">
<div class="background"></div>
<div class="slide slide_wrap">
<div class="close_button">
<a href="./main.html"
><img src="./image/icon/close_black.png" alt="."
/></a>
</div>
<div class="slide_item item1">
<img src="./image/intro/intro1.png" alt="." />
</div>
<div class="slide_item item2">
<img src="./image/intro/intro2.png" alt="." />
</div>
<div class="slide_item item3">
<img src="./image/intro/intro3.png" alt="." />
</div>
<div class="slide_prev_button slide_button">
<img src="./image/icon/left-chevron.png" alt="img" />
</div>
<div class="slide_next_button slide_button">
<img src="./image/icon/chevron.png" alt="img" />
</div>
<ul class="slide_pagination"></ul>
</div>
</div>
<script src="./js/intro.js"></script>
</body>
</html>