-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwhatsapp.html
More file actions
80 lines (73 loc) · 3.79 KB
/
Copy pathwhatsapp.html
File metadata and controls
80 lines (73 loc) · 3.79 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
<!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">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="whatsapp.css">
<link rel="stylesheet" href="styles.css">
<title>WhatsApp 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" 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 active" href="whatsapp.html">WhatsApp</a>
</div>
</div>
</nav>
<h2 class="colorblock">WhatsApp</h2>
<p>
WhatsApp is a free messaging service that started in 2009
as an alternative to SMS.
</p>
<hr>
<h3><u>Main Features</u></h3>
<ol>
<li>Text Messaging: Send and receive text messages in real-time.</li>
<li>Voice Calls: Make voice calls to other WhatsApp users over an internet connection.</li>
<li>Video Calls: Conduct video calls for face-to-face communication.</li>
<li>Group Chats: Create and participate in group chats with multiple contacts.</li>
<li>End-to-End Encryption: WhatsApp provides end-to-end encryption for messages, ensuring privacy and security.</li>
<li>Media Sharing: Share photos, videos, documents, and audio files with contacts.</li>
<li>Status Updates: Post short-lived status updates that disappear after 24 hours.</li>
<li>WhatsApp Web: Use WhatsApp on a web browser to chat from a computer.</li>
</ol>
<hr>
<h3><u>Life Before WhatsApp</u></h3>
<div class="grid">
<div class="image">
<img src="res/whatsapp/MarathonRunner.jpg" alt="Athenian Courier Pheidippides">
</div>
<div class="text">
<p>
Pheidippides was a Greek runner who, according to legend, ran from the Battle of
Marathon to Athens to announce victory, inspiring the modern marathon race.
</p>
</div>
</div>
</p>
<a href="https://www.sciencedirect.com/topics/computer-science/computer-science-applications">Applications of Computer Science Article</a>
<footer>
<div id="footerDiv" class="footerClass">
<p>
<a href="https://github.com/michaelsomper"><img src="res/github-mark.svg" class="github-logo"/></a>
Written by Michael
</p>
<a href="index.html">Back to main page</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>