-
Notifications
You must be signed in to change notification settings - Fork 1
/
cloud.html
72 lines (64 loc) · 4.59 KB
/
cloud.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
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impacts of computer science in gambling</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body>
<!-- NAVBAR, format taken from https://getbootstrap.com/docs/5.0/components/navbar/ -->
<nav class="navbar navbar-expand-md navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Impacts of CS: The Cloud</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="gambling.html">Gambling</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="poaching.html">Poaching</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="medical.html">Medical</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="cloud.html">The Cloud</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="row mx-5 d-inline-block contentContainer mb-3 mt-3 row mx-lg-5 px-lg-5 mx-sm-2 px-lg-2">
<h3 class="col-lg text-align-start text-decoration-underline">Cloud Computing</h3>
<p>This website was put together using GitHub, a cloud based application that utilises Git <img src="https://live.staticflickr.com/8739/16284069063_9b16b170f2_b.jpg" alt="Picture Respresenting Cloud Computing" class="w-25 h-25 float-end" id="CloudIMG"></p>
<p>Cloud based services allow you to store and access files remotely and without needing to download them to a local storage; assuming you have access to the internet.</p>
<p>Many things in day to day life utilise "The Cloud", such as: <ul>
<li class="ms-5">Social Media</li>
<li class="ms-5">Video Streaming</li>
<li class="ms-5">Email</li>
<li class="ms-5">Cloud Storage</li>
</ul></p>
</div>
<div class="row mx-5 contentContainer mb-3 row mx-lg-5 px-lg-5 mx-sm-2 px-lg-2">
<h6 class="text-decoration-underline">Keeping us connected during the pandemic</h4>
<p>Cloud Computing allowed transition of work from in person to remote during the pandemic: it allows work to be stored and accessed remotely, away from the office; aswell as allowing people to meet virtually, bringing the office to your home or allwoing children to be schooled and educated remotely.</p>
<p>Remote work has become part of the new normal and has become a much more common and prominent requriement for jobs seekers. Pushing more utility to the progress of cloud based services</p>
<p>Kept families and friends together when they couldnt see each other, by letting people see and chat with their friends without leaving the house</p>
</div>
<div class="row mx-5 contentContainer row mx-lg-5 px-lg-5 mx-sm-2 px-lg-2">
<h6 class="text-decoration-underline">Software</h4>
<p>Cloud based services allow for software applications to be downloaded and updated remotely from an internet browser, instead of needing to be manually installed from a drive or disc</p>
<p>Much more convenient as allows everyone, anywhere access to the applications. Especially useful for applications that may recieve frequent updates, ie. Video Games or Anti-Virus Software</p>
<p>Also helps to store photos, videos and messages without needing them physcially written to your hardware. Saving people needing a huge amount of physical memory.</p>
</div>
<script src="/assets/js/bootstrap.min.js"></script>
<footer class="d-flex justify-content-center">
<address>Author Credits via <a href="https://github.com/AxFrz">Github</a></address>
</footer>
</body>
</html>