-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (36 loc) · 1.48 KB
/
index.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
<html lang="en">
<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">
<title>Jay's StarWarZ Page</title>
<link rel= "stylesheet" href="styles.css">
</head>
<body>
<div class= "centralHQ">
<!--Planet page links-->
<div id= "planet-type">
<img src="images/starwarzlogo.png" id= "welcome-image" alt="Star Wars logo editted to match galaxy pattern background image">
<a href= "tatooine.html?apiNumber=1"><img src= "images/tatooine.png" title= "Tatooine" class= "planet-img"></a>
<a href= "alderaan.html?apiNumber=2"><img class= "planet-img" title= "Alderaan" src= "images/alderaan.png"></a>
<a href="yavin4.html?apiNumber=3"><img title= "Yavin IV" src="images/yavin4.png" class= "planet-img"></a>
</div>
<div class= "exposition">
<p id= "planet-caption">Click a planet to find out more</p>
<h2>Search planets and people</h2>
<form action= "" method= "GET" id="searchform">
<input id= "userInput" placeholder= "Start typing..." type= "textbox" name= "keyword" />
<input type= "button" value= "submit" id= "submit-button">
</form>
<br>
</div>
</div>
<br>
<div class= "footer">
<p>
<a class="disclaimer" href= "disclaimer.html"><h3>Site Disclaimer and Sources</h3></a>
</p>
</div>
<script src= "script.js"></script>
</body>
</html>