-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail.html
155 lines (144 loc) · 5.77 KB
/
detail.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forum</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web:ital@1&display=swap" rel="stylesheet">
</head>
<body>
<div class="logo">
<img src="images/1.jpeg" alt="Logo">
</div>
<header>
<!--NavBar Section-->
<div class="navbar">
<nav class="navigation hide" id="navigation">
<span class="close-icon" id="close-icon" onclick="showIconBar()"><i class="fa fa-close"></i></span>
<ul class="nav-list">
<li class="nav-item"><a href="forums.html">Forums</a></li>
<li class="nav-item"><a href="posts.html">Posts</a></li>
<li class="nav-item"><a href="detail.html">Detail</a></li>
</ul>
</nav>
<a class="bar-icon" id="iconBar" onclick="hideIconBar()"><i class="fa fa-bars"></i></a>
<div class="brand">Buzzz...</div>
</div>
<!--SearchBox Section-->
<div class="search-box">
<div>
<select name="" id="">
<option value="Everything">Everything</option>
<option value="Titles">Titles</option>
<option value="Descriptions">Descriptions</option>
</select>
<input type="text" name="q" placeholder="search ...">
<button><i class="fa fa-search"></i></button>
</div>
</div>
<div class="container">
<!--Navigation-->
<div class="navigate">
<span><a href="">Buzzz... - Forums</a> >> <a href="">random subforum</a> >> <a href="">random topic</a></span>
</div>
<!--Topic Section-->
<div class="topic-container">
<!--Original thread-->
<div class="head">
<div class="authors">Author</div>
<div class="content">Topic: random topic (Read 1325 Times)</div>
</div>
<div class="body">
<div class="authors">
<div class="username"><a href="">Sheldon</a></div>
<div>Student</div>
<img src="images/a3.jpg" alt="">
<div>Posts: <u>45</u></div>
<div>Points: <u>4586</u></div>
</div>
<div class="content">
Just a random content of a random topic.
<br>To see how it looks like.
<br><br>
Nothing more and nothing less.
<br>
<hr>
Regards Sheldon
<br>
<div class="comment">
<button onclick="showComment()">Comment</button>
</div>
</div>
</div>
</div>
<!--Comment Area-->
<div class="comment-area hide" id="comment-area">
<textarea name="comment" id="" placeholder="comment here ... "></textarea>
<input type="submit" value="submit">
</div>
<!--Comments Section-->
<div class="comments-container">
<div class="body">
<div class="authors">
<div class="username"><a href="">Leonard</a></div>
<div>Student</div>
<img src="images/a2.jpg" alt="">
<div>Posts: <u>455</u></div>
<div>Points: <u>4586</u></div>
</div>
<div class="content">
Just a comment of the above random topic.
<br>To see how it looks like.
<br><br>
Nothing more and nothing less.
<br>
<br>
<div class="comment">
<button onclick="showReply()">Reply</button>
</div>
</div>
</div>
</div>
<!--Reply Area-->
<div class="comment-area hide" id="reply-area">
<textarea name="reply" id="" placeholder="reply here ... "></textarea>
<input type="submit" value="submit">
</div>
<!--Another Comment With replies-->
<div class="comments-container">
<div class="body">
<div class="authors">
<div class="username"><a href="">Howard</a></div>
<div>Student</div>
<img src="images/a1.jpg" alt="">
<div>Posts: <u>455</u></div>
<div>Points: <u>4586</u></div>
</div>
<div class="content">
Just a comment of the above random topic.
<br>To see how it looks like.
<br><br>
Nothing more and nothing less.
<br>
<br>
<div class="comment">
<button onclick="showReply()">Reply</button>
</div>
</div>
</div>
</div>
<!--Reply Area-->
<div class="comment-area hide" id="reply-area">
<textarea name="reply" id="" placeholder="reply here ... "></textarea>
<input type="submit" value="submit">
</div>
</div>
<footer>
<span>© Team Aquarians | All Rights Reserved</span>
</footer>
<script src="main.js"></script>
</body>
</html>