-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIndex.html
More file actions
65 lines (61 loc) · 3.88 KB
/
Index.html
File metadata and controls
65 lines (61 loc) · 3.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Uses for Computing</title>
<style>
img {
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">Uses For Computing</a>
</div>
<ul class="nav navbar-nav">
<li><a href="communication.html">Communication</a></li>
<li><a href="healthcare.html">Healthcare</a></li>
<li><a href="research.html">Research</a></li>
<li class="active"><a href="transportation.html">Transportation</a></li>
</ul>
</div>
</nav>
<div class="container" style="margin-top:70px">
<h1>Uses of Computer Science</h1>
</div>
<div class="row">
<div class = "col-lg-1"></div>
<div class="col-lg-5">
<h2>Communication</h2>
<a href="Communication.html"><img src="images/communication.jpg" alt="Communication Image" style="width:50%;height:50%;"></a>
<p>Computer science has revolutionized communication by enabling the creation of the internet, social media platforms, and instant messaging applications. It facilitates global connectivity, allowing people to share information and collaborate in real-time regardless of geographical barriers. Advances in computer science continue to improve the speed and reliability of communication technologies.</p>
</div>
<div class="col-lg-5"></div>
<h2>Healthcare</h2>
<a href="healthcare.html"><img src="images/healthcare.jpg" alt="Healthcare Image" style="width:20.5%;height:20.5%;"></a>
<p>Computer science plays a crucial role in healthcare by enabling the development of electronic health records, telemedicine, and medical imaging technologies. It aids in the analysis of large datasets for research and personalized medicine, improving patient outcomes. Additionally, computer algorithms assist in diagnostics and treatment planning, enhancing the efficiency and effectiveness of healthcare delivery.</p>
<div class = "col-lg-1"></div>
</div>
<div class="row">
<div class = "col-lg-1"></div>
<div class="col-lg-5">
<h2>Research</h2>
<a href="Research.html"><img src="images/research.jpg" alt="Research Image" style="width:50%;height:50%;"></a>
<p>Computer science is integral to modern research across various fields, enabling complex simulations, data analysis, and modeling. It allows researchers to process vast amounts of data quickly, facilitating discoveries in areas such as genomics, climate science, and physics. Computational tools and algorithms enhance the ability to visualize data and derive insights, accelerating the pace of scientific advancement.</p>
</div>
<div class="col-lg-5">
<h2>Transportation</h2>
<a href="Transportation.html"><img src="images/transportation.jpg" alt="Transportation Image" style="width:50%;height:50%;"></a>
<p>Computer science has transformed transportation through the development of advanced navigation systems, autonomous vehicles, and traffic management solutions. It enables real-time data analysis for optimizing routes, reducing congestion, and improving safety. Innovations in computer science continue to drive advancements in transportation technology, making travel more efficient and accessible.</p>
<div class = "col-lg-1"></div>
</div>
</body>
</html>