-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-us.html
More file actions
54 lines (54 loc) · 1.65 KB
/
Copy pathabout-us.html
File metadata and controls
54 lines (54 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<style>
body{
background: linear-gradient(90deg, rgb(255, 0, 150), rgb(0, 204, 255));
}
.AU{
font-size: 50px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: #191970;
text-align: center;
}
.feature{
display: flex;
}
.ia{
width: 400px;
height: 400px;
border-radius: 50%;
box-shadow: 8px 8px 10px silver;
}
.para{
margin-left: 70px;
}
.pp{
font-size: 30px;
font-weight: bold;
}
h3{
font-size: 40px;
}
.ff{
font-size: 25px;
}
</style>
</head>
<body>
<h2 class="AU">About Us</h2>
<div class="feature">
<div class="image">
<img class="ia" src="assets/Cheetah Illustration.jpeg" alt="">
</div>
<div class="para">
<h3>Who are we</h3>
<p class="pp">Kenzy Squad is a dedicated group of individuals passionate about learning and mastering the field of cybersecurity. Our objective is to acquire cutting-edge skills and knowledge to safeguard systems and protect against cyber threats. Together, we strive to create a secure digital environment through collaboration, innovation, and continuous learning.</p>
<p class="ff">- From Squad Leader, Kenzy</p>
</div>
</div>
</body>
</html>