-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdms.html
More file actions
38 lines (36 loc) · 1.29 KB
/
dms.html
File metadata and controls
38 lines (36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Beat-Switch</title>
<script type="text/javascript" src="main.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body onload="loadDms()">
<!-- Header -->
<div class="header">
<h1>Beat-Switch</h1>
<div class="topnav">
<a href="home.html">Home</a>
<a href="post.html">Post</a>
<a href="contact.html">Contact</a>
<a href="dms.html">Messages</a>
<a href="login.html">Log Out</a>
</div>
</div>
<h1 class="title">YOUR MESSAGES</h1>
<div id="feed">No Messages Found.</div>
<!-- Footer -->
<div class="footer">
<p>© 2024 Mankirt Hothi 219384239.</p>
<address>
Written By: Mankirt Hothi<br>
Made for ITEC 3020 A Fall 2024<br>
York University<br>
Professor Shadikur Rahman<br>
</address>
</div>
</body>
</html>