forked from RamezKamel4/Programming-Forum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiscussions.html
More file actions
39 lines (33 loc) · 1.29 KB
/
discussions.html
File metadata and controls
39 lines (33 loc) · 1.29 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ProgZone - Main</title>
<link rel="stylesheet" href="css/discussions.css">
<script type="text/javascript" src="js/animations.js" defer></script>
</head>
<body>
<header>
<h1 class="logo"><a class="logo2" href="main.html">ProgZone</a></h1>
<div id="profileButton" onclick="toggleCategory('guides')">
<a href="profile.html">
<img src="img/test1.jpg" alt="Profile Picture">
</a>
</div>
<nav class="top">
<ul class="categories">
<li><a class="discussions" href="discussions.html" onclick="toggleCategory('discussions')">Discussions</a></li>
<li><a class="questions" href="questions.html" onclick="toggleCategory('questions')">Questions</a></li>
<li><a class="guides" href="guides.html" onclick="toggleCategory('guides')">Guides</a></li>
</ul>
</nav>
</header>
<div class="line"></div>
<div> <h1 style="color: white;">Some Discussions</h1></div>
<footer>
<p>© 2023 ProgZone. All rights reserved.</p>
</footer>
<div class="floating-button">+</div>
</body>
</html>