-
Notifications
You must be signed in to change notification settings - Fork 1
/
popular.html
50 lines (50 loc) · 1.79 KB
/
popular.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
<!DOCTYPE HTML>
<<html>
<head>
<meta charset="utf-8">
<title>eHarbinger</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<!--<script type="text/javascript" src = "design.js"></script>-->
</head>
<body>
<div id = 'banner'>
<section class = 'inner split'>
<div>
<h2> Popular Games! </h2>
</div>
<div>
<!--Back end to log out of profile -->
<button class = 'button-right' onclick = "logout()"> Log Out </button>
</div>
</section>
</div>
<!-- Back end to load posts -->
<div onload = "getPosts()">
<section class = 'wrapper'>
<div class = 'align-center'>
<h1> Check out this week's popular games!</h1>
<!-- Enter information about other posts to be made -->
<p> The #1 game people have been playing this week is League of Legends. </p>
<p> Star Wars Battlefront has been released and has been given rave reviews. </p>
<p> Fallout 4 has no multiplayer, but has still been highly recommended by players </p>
</div>
<br>
</section>
<table><!-- comments go here -->
<tr><td>@4:10 - Benson: </td><td>Why is everyone still talking about League?</td></tr>
<tr><td><!-- Benchan add timestamp pls -->@4:12 - Priyam:</td><td>League is the best</td></tr>
</table>
<br />
<!-- Here is form, pls use $GET for action -->
<form method='post' action=''>
<input type='text' name='comment' autofocus='autofocus' placeholder='Enter a comment here!'>
<br>
<input type='submit' value='Comment!'>
</div>
<div>
<footer>
<a href = "suggested.html"> Suggested Games | </a> <a href = "forum.html"> General Forum | </a> <a href = "achievement.html"> Achievements | </a> <a href = "profile.html">My Profile </a>
</footer>
</div>
</body>
</html>