-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout us.html
126 lines (79 loc) · 2.37 KB
/
About us.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=320, initial-scale=1.0">
<title>About Us</title>
<link rel="icon" href="C:\Users\jndimande\OneDrive - Rietondale High School\Desktop\HTML\icon.ico" type="icon.ico">
<style>
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: "Times New Roman", serif;
background-color: black;
color: white;
text-align: center;
}
h1 {
margin-top: 20px;
}
hr {
border: 0;
height: 1px;
background: aqua;
margin: 20px 0;
}
.logo {
max-height: 50%;
margin: 20px 0;
}
p {
font-size: 18px;
margin: 20px;
line-height: 1.5;
}
h2 {
margin-top: 40px;
margin-bottom: 20px;
}
.developers {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.developer {
width: 200px;
margin: 10px;
padding: 10px;
background-color: #222;
border-radius: 10px;
}
.developer img {
width: 100%;
border-radius: 50%;
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1>About Us:</h1>
<hr color="aqua">
<img class="logo" src="swift.png" alt="Logo">
<p>S.S <i>(SwiftTech Solutions)</i> is a company founded by Kabelo Samkelo Kgosana on September 11, 2023. We work on varies projects, specialising in developing applications, websites and AI.</p>
<p>S.S is a company with skilled developers who are dedicated to giving you, your desired website/application. </p>
<h2>-- Meet our Developers: --</h2>
<div class="developers">
<!-- Add developer details here -->
<!-- Example developer card -->
<!--
<div class="developer">
<img src="developer_image_url" alt="Developer Name">
<p>Developer Name</p>
</div>
-->
</div>
</body>
</html>
</html>