forked from BrianZasuwik/gitcollab-practical
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (82 loc) · 4.19 KB
/
index.html
File metadata and controls
90 lines (82 loc) · 4.19 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<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" href="mainStyle.css">
<title>How Technology Improves Lives</title>
</head>
<body>
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ai_industry.html">AI</a>
</li>
<li class="nav-item">
<a class="nav-link" href="disabilityaids.html">Disability Aids</a>
</li>
<li class="nav-item">
<a class="nav-link" href="computer_vision.html">Computer Vision</a>
</li>
<li class="nav-item">
<a class="nav-link" href="RecordKeeping.html">Record Keeping</a>
</li>
<li class="nav-item">
<a class="nav-link" href="nature.html">Environmental</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Encryption.html">Encryption</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container mt-4">
<h1>How Technology Improves Lives</h1>
<p>Read through some of our articles on how technology improves lives</p>
<div class="card mb-3">
<div class="card-body">
<h3 class="h5">AI</h3>
<p><a href="ai_industry.html">How AI is helping improve medical outcomes</a></p>
</div>
</div>
<div class="card mb-3">
<div class="card-body">
<h3 class="h5">Disability Aids</h3>
<p><a href="disabilityaids.html">How technology is made more accessible to all</a></p>
</div>
</div>
<div class="card mb-3">
<div class="card-body">
<h3 class="h5">Computer Vision</h3>
<p><a href="computer_vision.html">How computers can be used to spot problems and provide a second set of eyes</a></p>
</div>
</div>
<div class="card mb-3">
<div class="card-body">
<h3 class="h5">Record Keeping</h3>
<p><a href="RecordKeeping.html">How computing has made record keeping accurate, reliable, and fast</a></p>
</div>
</div>
<div class="card mb-3">
<div class="card-body">
<h3 class="h5">Environment</h3>
<p><a href="nature.html">How technology helps conservationism and monitoring nature</a></p>
</div>
</div>
<div class="card mb-3">
<div class="card-body">
<h3 class="h5">Encryption</h3>
<p><a href="Encryption.html">How technology is enabling us to have more privacy in an increasingly connected world</a></p>
</div>
</div>
</div>
<!-- Add content before the JS link -->
<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>
<script type="text/javascript" src="javascript.js"></script>
</body>
</html>