-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommunication.html
More file actions
38 lines (38 loc) · 2.16 KB
/
communication.html
File metadata and controls
38 lines (38 loc) · 2.16 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" \>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles/style.css" \>
<title>Impacts of Computing on Communication</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<script src="scripts/theme.js" defer></script>
</head>
<body>
<ul class="nav nav-pills nav-fill">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gaming.html">Gaming benefits</a>
</li>
<li class="nav-item">
<a class="nav-link" href="AIInHealthcare.html">AI in healthcare</a>
</li>
<li class="nav-item">
<a class="nav-link" href="communication.html">Benefits of communications</a>
</li>
</ul>
<h1>Impacts of Computing on Communication</h1>
<button id="colourSwitch" type="button">Switch to dark mode</button>
<dl>
<dt>Email</dt>
<dd>Email is one of the earliest forms of digital communication and is still used today. It allows users to send messages and files between computers asynchronously - meaninging the sender and receiver don't need to be online at the same time.</dd>
<dt>Instant Messaging (IM)</dt>
<dd>Instant messaging is different from email as it is synchronous. This means that the receiver is able to reply immediately to any messages sent. So, sending a message through Whatsapp or Messages</dd>
<dt>Remote Work</dt>
<dd>More recently, computing has opened the possibility of remote work through video conferencing. This shift was espcially prominent during the COVID pandemic, when the global lockdown forced employers to find new ways for workers to communicate from home.</dd>
</dl>
<p></p>
</body>
</html>