-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (45 loc) · 2.16 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
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Home Page</title>
<link href="./css/home.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/nav_bar.css">
<link href='https://fonts.googleapis.com/css?family=Dekko' rel='stylesheet'>
<style>
body {
font-family: 'Dekko';font-size: 22px;
}
</style>
</head>
<body>
<div class="content">
<h1>Home: Welcome to my page</h1>
<ul>
<li><a href="https://user.tjhsst.edu/2021smedaram/">Home</a></li>
<li><a href="https://user.tjhsst.edu/2021smedaram/weatherform">Get the Weather!</a></li>
<li><a href="https://user.tjhsst.edu/2021smedaram/funform">Predict Your Future</a></li>
<li><a href="https://user.tjhsst.edu/2021smedaram/voting_form">Vote for Your Favorite Animal</a></li>
<li><a href="https://user.tjhsst.edu/2021smedaram/mapHome">Senators Infographic</a></li>
<li><a href="https://user.tjhsst.edu/2021smedaram/cookie_content">Guess Mystery Box</a></li>
<li><a href="https://user.tjhsst.edu/2021smedaram/profile_home">ION Profile</a></li>
<li><a href="https://user.tjhsst.edu/2021smedaram/house_home">Award House Points</a></li>
<!-- <li><a href="https://user.tjhsst.edu/2021smedaram/animated_story">View Animated Story</a></li>}} -->
<li><a href="https://user.tjhsst.edu/2021smedaram/game">Anagrams</a></li>
</ul>
<h2 id="titul">Can you guess who's inside the red telephone booth?</h2>
<div class="form_content" id="content-main">
<p id="error_message"></p>
<form>
<input class="inp" id="guess" type="text" name="guess"> <br>
<button class="inp" type="button" onclick="fetchFromServer()">Guess!</button>
</form>
</div>
<div class="img">
<img src="pics/redtelephone.jpg">
</div>
</div>
<script type="text/javascript" src="client-js/home.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
</body>
</html>