-
Notifications
You must be signed in to change notification settings - Fork 0
/
StartPage.html
82 lines (67 loc) · 2.46 KB
/
StartPage.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Start</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='css/start.css'>
</head>
<body>
<audio autoplay loop>
<source src="audio/Music.mp3" />
</audio>
<div>
<img src="images/gray.png" width='75' height = '75' class="map">
<img src="images/gray.png" width='75' height = '75' class="map">
<img src="images/gray.png" width='75' height = '75' class="map">
<p class="message"></p>
</div>
<div class="start">
<div id="login">
<div id="gameNameForm">
<h1 id="gameName">Metal Slug</h1>
</div>
<button id="help">Help</button>
<h2 id="usrname">Enter Your Name</h2>
<input type= "text" id="player_name">
<h4 id="message">At least 3 character</h4>
<button class="button" id="level_button">Levels</button>
<br><br><br>
<button class="button" id="character_button">character</button>
<br><br><br>
<button class="button" id="playButton" name="played">Play</button>
<br><br><br>
</div>
<div class="level_form">
<button id="hide_level_button">
<img src="images/back.jpg" style="width:40px; height:25px">
</button>
<br><br>
<img src="images/level01icon.png" class="img_level" name="1">
<img src="images/level02icon.png" class="img_level" name="2">
<img src="images/level03icon.png" class="img_level" name="3">
</div>
<div class="Char_form">
<button id="hide_char_form">
<img src="images/back.jpg" style="width:40px; height:25px">
</button>
<br><br>
<img src="images/character.gif" class="cahr_img" name="1">
<img src="images/narto.gif" class="cahr_img" name="2">
<img src="images/mario.gif" class="cahr_img" name="3">
</div>
<div class="help_form">
<button id="hide_help_form" >
<img src="images/back.jpg" style="width:40px; height:25px">
</button>
<br><br>
<pre id="help_content">
Metal Slug is a series of run and gun video games
use keybord to control it.
</pre>
</div>
</div>
<script src='js/start.js'></script>
</body>
</html>