-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
65 lines (63 loc) · 3.19 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<!-- Global stylesheet -->
<link rel="stylesheet" href="styles.css">
<title>Positive Applications of Computing</title>
</head>
<body>
<!-- Navbar from https://getbootstrap.com/docs/4.0/components/navbar/#how-it-works -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand ms-2" href="#">TLRM</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarContent">
<div class="navbar-nav">
<a class="nav-item nav-link active" href="index.html">Home</a>
<a class="nav-item nav-link" href="powerpoint.html">PowerPoint</a>
<a class="nav-item nav-link" href="nft.html">NFTs</a>
<a class="nav-item nav-link" href="crypto.html">Crypto</a>
<a class="nav-item nav-link" href="whatsapp.html">WhatsApp</a>
</div>
</div>
</nav>
<div class="ms-4 mt-4">
<div id="headerDiv">
<h1 id="titleHeader">Positive Applications of Computing on Society</h1>
<p>
Throughout this spectacular series of articles, we shall
convince you of our objectively correct most positive and
signficiant applications of computing on society
</p>
</div>
<div id="sectionsDiv">
<h2 id="sectionsHeader">Sections</h2>
<ul>
<li><a href="powerpoint.html">Powerpoint</a></li>
<li><a href="nft.html">NFTs</a></li>
<li><a href="crypto.html">Crypto</a></li>
<li><a href="whatsapp.html">WhatsApp</a></li>
</ul>
</div>
<div id="authorsDiv">
<h2 id="authorsHeader">Authors</h2>
<p>
Behold, the list of only the most talented minds, whose
programming wizardry has conjured this series of webpages
</p>
<ul>
<li>Thomas</li>
<li>Lucas</li>
<li>Rajab</li>
<li>Michael</li>
</ul>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>