-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsoftwareEngineering.html
34 lines (31 loc) · 1.2 KB
/
softwareEngineering.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
<!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">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
clifford: '#da373d',
}
}
}
}
</script>
</head>
<body>
<!--Navbar Content Loaded by navbar.js file-->
<div class="navbar container-fluid d-flex bg-main p-4"></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/footer.js"></script>
</body>
</html>