-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro.html
45 lines (42 loc) · 1.42 KB
/
intro.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
<!DOCTYPE html>
<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="shortcut icon" href="assets/favicon.jpg" type="image/x-icon">
<link rel="stylesheet" href="./src/css/intro.css">
<title>RAW</title>
</head>
<body>
<div id="startScreen">
<div id="logo">
</div>
<div id="startScreen_menu">
<!-- <a href="game.html">Новая игра</a> -->
<div class="story">
<div class="chapter">
<table>
<tr>
<td class="center">
<img src="" id="chapterImage">
</td>
</tr>
<tr>
<td>
<p id="chapterText">
</p>
</td>
</tr>
<tr>
<td>
<button id="nextButton">Далее</button>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<script src="./src/js/intro.js"></script>
</body>
</html>