forked from itscodenation/hackathon-19-20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-one.html
48 lines (40 loc) · 1.75 KB
/
page-one.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
<!DOCTYPE html>
<html>
<head>
<title>StarCraft:Revolution</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Your CSS Linked Below-->
<link rel="stylesheet" href="css/styles.css">
<!-- jQuery Linked Below-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Bootstrap Javascript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Your Javascript Linked Below-->
<script src="js/script.js" defer></script>
</head>
<body>
<!--Second Page of the Game-->
<div class="container" id="secondPage">
<div class="row">
<h1>StarCraft:Revolution</h1>
<img class ="PlanetImage"src= "https://img00.deviantart.net/f2a8/i/2014/109/8/c/kepler_186f_by_alpha_element-d7f4op3.png">
<p>
<a href="index.html"> Go Back!</a>
</p>
</div>
<div class="row">
<div class="col-lg-12">
<h3 id="question">What would you like to name your spaceship?</h3>
</div>
</div>
<div class="row">
<input placeholder="Your Spaceships name" id="spaceshipName">
<a href="third-page.html"><button id="submitName">Submit</button></a>
</div>
</div>
</body>
</html>