-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 732 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (21 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NewsByte AI</title>
<link rel="stylesheet" href="style.css" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
</head>
<body>
<div id="app"></div>
<script src="data/newsData.js"></script>
<script src="pages/loginPage.js"></script>
<script src="pages/homePage.js"></script>
<script src="pages/detailsPage.js"></script>
<script src="pages/profilePage.js"></script>
<script src="pages/adminPage.js"></script>
<script src="app.js"></script>
</body>
</html>