-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquantum.html
More file actions
97 lines (90 loc) · 3.44 KB
/
quantum.html
File metadata and controls
97 lines (90 loc) · 3.44 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
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<title>Quantum Computing</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="stylesheet.css" rel="stylesheet">
<script src="js/bootstrap.bundle.js"></script>
<style>
#contents a {
color: white;
}
div {
padding: 10px;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<ul id="nav">
<li><a href="index.html">Index</a></li>
<li><a href="GPS Navigation.html">GPS Navigation</a></li>
<li><a href="databases.html">Databases</a></li>
</ul>
</div>
</nav>
<div class="container-fluid bg-primary text-white">
<h1>Quantum Computing</h1>
<img src="img/quantum_computer.png">
<p>Quantum computing has a number of applications that make positive contributions to society.</p>
<p>These include:
<ul id="contents">
<li><a href="quantum.html#healthcare">Healthcare</a></li>
<li><a href="quantum.html#finance">Finance</a></li>
<li><a href="quantum.html#climate">Climate Technology</a></li>
<li>Travel and transportation</li>
<li>Privacy and security</li>
</ul>
</p>
</div>
<div class="container-fluid bg-secondary text-white" id="healthcare">
<h2>Healthcare</h2>
<div class="row align-items-start">
<div class="col">
<img src="img/quantum_healthcare.png" width="500">
</div>
<div class="col">
<p>QQuantum computing has many applications for healthcare, such as molecular simulations and radiotherapy.uantum computing has many applications for healthcare, such as molecular simulations and radiotherapy.</p>
</div>
</div>
</div>
<br>
<div class="container-fluid bg-secondary text-white" id="finance">
<h2>Finance</h2>
<div class="row align-items-start">
<div class="col">
<img src="img/quantum_finance.png" width="500">
</div>
<div class="col">
<p>Within finance, quantum computing can be used for:</p>
<ul>
<li>Advanced modelling</li>
<li>Optimised decision making</li>
<li>Quantum-enhanced machine learning</li>
</ul>
</div>
</div>
</div>
<br>
<div class="container-fluid bg-secondary text-white" id="climate">
<h2>Climate Technology</h2>
<div class="row align-items-start">
<div class="col">
<img src="img/quantum_climate.png" width="500">
</div>
<div class="col">
<p>Quantum climate technology is the application of quantum computing and sensing to address climate change through areas such as:</p>
<ul>
<li>Creating advanced climate models</li>
<li>Designing new materials for batteries</li>
<li>Carbon capture</li>
<li>Improving renewable energy efficiency</li>
</ul>
</div>
</div>
</div>
<P>Authored by <a href="https://github.com/jedn07" target="_blank">Jed</a></P>
</body>
</html>