-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmobileApp.html
27 lines (22 loc) · 1.06 KB
/
mobileApp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NetsCope Academy</title>
<link rel="stylesheet" type="text/css" href="./scss/styles.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
</head>
<body>
<!--Navbar Content Loaded by navbar.js file-->
<div class="navbar container-fluid d-flex bg-main p-4"></div>
<!-- Main Content-->
<div class="container" id="root"></div>
<!-- Footer Content Loaded by footer.js file-->
<div class="bg-dark text-white py-4 footer"></div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script type="module" src="./scripts/navbar.js"></script>
<script type="module" src="./scripts/mobileApp/index.js"></script>
<script type="module" src="./scripts/footer.js"></script>
</body>
</html>