-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-forum.html
81 lines (80 loc) · 2.62 KB
/
main-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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<title>New Topic</title>
<script src="scripts/jquery-3.1.1.min.js"></script>
<script src="scripts/main.js"></script>
<link href="bootstrap/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="font-awesome/css/font-awesome.css" rel="stylesheet" />
<link href="bootstrap/bootstrap/css/bootstrap-theme.min.css" rel="stylesheet" />
<link href="main-css/main.css" rel="stylesheet" />
<link href="main-css/menu.css" rel="stylesheet" />
<link href="main-css/footer.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet">
</head>
<body>
<header class = "nav-bar">
<ul>
<img src = "images/sidonia_logo.png" id = "logo" width:"150px" height: "43px" />
<li ><a href="index.html"><span id="pink"> Home </span></a>
<li><a href="about.html"><span id="orange">About</span> </a>
<li ><a href="main-forum.html"><span id="dyellow">Forum</span> </a>
<li><a href="signup.html"><span id="neon-green">Sign Up </span></a>
<li ><a href="login.html"><span id ="cyan">Log In</span></a>
</ul>
</header>
<div class = "wrapper">
<div class= "topic-box">
<h1> Sidonia Template Forum </h1>
<br>
<table class="table table-striped">
<tbody>
<tr>
<td>
<h3>Name</h3>
</td>
<td>
<h3>Topic</h3>
</td>
<td>
<h3>Views</h3>
</td>
<td>
<h3>Replies</h3>
</td>
</tr>
<tr>
<td>
<a href="new-forum.html"><h3> Create new Forum </h3> </a>
</td>
</tr>
</tbody>
</table>
</div>
<!-- get rows of view, reply, view topic topic, and date time -->
<footer class = "col-md-12">
<div class = "soc col-md-6">
<span id = "contact">Contact</span>
<p> Bashundhara R/A </p>
<p> Dhaka </p>
<p> Bangladesh </p>
<br>
<p> +88017123456789 </p>
<p><a href="mailto:[email protected]" class="no-hijack">[email protected]</a></p>
<p><a href="http://www.facebook.com/saminaxhossain" class = "fa fa-facebook"></a></p>
</div>
<br>
<div class = "official">
<ul>
<li><a href="#">Legal Terms</a></li>
<li><a href="#">Cookies Policy</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
</footer>
</div>
</body>
</html>