-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 2.18 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 2.18 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
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" \>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styles/style.css" \>
<script src="scripts/theme.js" defer></script>
<title>Contributions of Computer Science to Society</title>
</head>
<body>
<ul class="nav nav-pills nav-fill">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gaming.html">Gaming benefits</a>
</li>
<li class="nav-item">
<a class="nav-link" href="AIInHealthcare.html">AI in healthcare</a>
</li>
<li class="nav-item">
<a class="nav-link" href="communication.html">Benefits of communications</a>
</li>
</ul>
<h3>Here you can explore the positive contributions of computing</h3>
<button id="colourSwitch" type="button">Switch to dark mode</button>
<div class="dropdown" data-bs-theme="dark">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButtonDark" data-bs-toggle="dropdown" aria-expanded="false">
Have you found this website informative?
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButtonDark">
<li><a class="dropdown-item" href="gaming.html">Yes</a></li>
<li><a class="dropdown-item" href="AIInHealthcare.html">No</a></li>
<li><a class="dropdown-item" href="communication.html">Maybe</a></li>
</ul>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
</body>
</html>