-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
43 lines (34 loc) · 1.05 KB
/
Copy pathabout.html
File metadata and controls
43 lines (34 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>What is Cloud</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="about.html">What is Cloud</a>
</nav>
<header>
<h1>☁️ What is Cloud?</h1>
<img src="https://images.unsplash.com/photo-1544197150-b99a580bb7a8" class="main-img">
<p>Cloud computing allows access to servers, storage and apps over the internet.</p>
<div class="buttons">
<button onclick="goBack()">⬅ Back</button>
<button onclick="goHome()">🏠 Home</button>
</div>
</header>
<section class="grid">
<div class="card">🌍 Public Cloud</div>
<div class="card">🔒 Private Cloud</div>
<div class="card">🔀 Hybrid Cloud</div>
<div class="card">☁️ Multi Cloud</div>
</section>
<footer>
<p>👩💻 Team: Salma Aljabri | Batool Ali | Roba Abdullah | Aghsan Abdullah | Raghad Hussin</p>
<p>👨🏫 Supervisor: Zainab Alharthy</p>
<p>🏫 Section: LO3</p>
</footer>
</body>
</html>