-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
60 lines (58 loc) · 1.78 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
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>freeCodeCamp forum clone</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<!-- Top navigation bar -->
<nav>
<a href="https://forum.freecodecamp.org/" target="_blank">
<img
id="fcc-logo"
src="./images/fcc_primary_large.png"
alt="freeCodeCamp logo"
/>
</a>
</nav>
<!-- Main page content -->
<main>
<h1>Latest topics</h1>
<div id="filter-btns" class="reset"></div>
<div id="online-user-list"></div>
<table>
<thead>
<tr>
<th class="topics">Topics</th>
<th class="posters"></th>
<th class="replies">
<button name="sort" value="replies">Replies</button>
</th>
<th class="views">
<button name="sort" value="views">Views</button>
</th>
<th class="activity">
<button name="sort" value="activity">Activity</button>
</th>
</tr>
</thead>
<tbody id="posts-container"></tbody>
</table>
</main>
<!-- Page footer -->
<footer id="footer">
<p>Copyright © <span id="copyright"></span></p>
</footer>
<script type="module" src="./index.js"></script>
</body>
</html>