-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforum.html
49 lines (43 loc) · 1.96 KB
/
forum.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
LoKe Games - Forum
</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="forum">
<div style="width: 100%;"><img class="logo" src="Images/logo.jpg" width="200px" height="200px" alt="Logo"></div>
<nav class="navbar">
<ul style="margin-top: 0">
<li><a href="index.html">Home</a></li>
<li><a href="category.html">Category</a></li>
<li><a href="trending.html">Trending</a></li>
<li><a href="forum.html">Forum</a></li>
<li><a href="signin.html">Sign in</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<p class="motto">Join the Community of over <span class="M"><strong>1 Million</strong></span> people.</p>
<h1 class="subtopic">Post a question to the World</h1>
<div>
<form class="question">
<div style="font-size: 28px">Post Your Question:</div>
<textarea class="questionBox" type="text"></textarea>
<br>
<button class="post" type="submit" value="Post">Post</button>
</form>
</div>
<h1 class="subtopic" style="margin-top: 8%;">Request a Game</h1>
<p style="text-align: center; margin: 0px 12%; word-spacing: 10px">Want you play a Game? and you haven't found it anywhere. You can make a request here. The Game will be uploaded on <strong>LoKe Games</strong>
within a Week.</p>
<div>
<form class="question">
<div style="font-size: 28px">Request the game here:</div>
<input class="requestBox" type="text">
<br>
<button class="post" type="submit" value="Post">Request</button>
</form>
</div>
</body>
</html>