-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstartHTML.html
More file actions
51 lines (51 loc) · 2.14 KB
/
startHTML.html
File metadata and controls
51 lines (51 loc) · 2.14 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
<!DOCTYPE html>
<div id="mainloader" class="se-pre-con"></div>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Start page">
<meta name="keywords" content="HTML,CSS,JavaScript">
<meta name="author" content="Saurav Kadariya">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="./assets/img/favicon.png">
<title>Start</title>
<!-- External .css file -->
<link href='https://fonts.googleapis.com/css?family=Orbitron|Passion+One' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<link rel='stylesheet' type='text/css' href='./css/startStyle.css'>
</head>
<body>
<div class='card'>
<div class='section1'>
</div>
<form id='userInfo'>
<div class='section2'>
<label for='name'>Player Name</label></br>
<input type="text" name='userName'id="userName" size='35' required>
<br>
<!-- Game design change: removed ship naming feature -->
<!-- <label for='name'>Ship Name</label></br> -->
<input type="hidden" name='shipName' id="shipName" size ='35'required>
</div>
<div class='section3'>
<div class="center-align">
<input type="radio" name="level" id="size_1" value="easy" checked />
<label for="size_1">Easy</label>
<input type="radio" name="level" id="size_2" value="medium" />
<label for="size_2">Medium</label>
<input type="radio" name="level" id="size_3" value="hard" />
<label for="size_3">Hard</label>
</div>
</div>
<div class='section4'>
<div class="flashit" id="startGame" type='' value = 'StartGame' onclick="subbmitUserinfo();"/><p>Launch!<a href='./mainHTML.html'></a></p></div>
</div>
</form>
</div>
</body>
<script src='./js/startHTML.js'></script>
<script src='./js/user.js'></script>
</html>