-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
50 lines (46 loc) · 1.75 KB
/
about.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
<!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>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="logo.png" alt="Logo"><!-- Your logo -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="join.html">Join/Login</a></li>
<li><a href="services.html">Services</a></li>
</ul>
</nav>
</header>
<section id="about" class="about-section">
<h2>About Us</h2>
<p>We are a dedicated team of experts focused on recovery services and much more.</p>
<!-- Images of the team -->
<div class="team">
<div class="person">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQbeGzlFMF5nWN2rMyQH5wtZTxmwyCtIRgx_g&usqp=CAU" alt="Team member John Smith">
<p>John Smith</p>
<p>Co-Founder & CTO</p>
</div>
<div class="person">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT5MdB-UWnrZXi_KaY1FCMGnmi2DMf5OxWskg&usqp=CAU" alt="Team member Michael Johnson">
<p>Michael Johnson</p>
<p>Lead Developer</p>
</div>
<div class="person">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTsg0rpOfpHwA4Ww-gEc_poslIjMYB7B1zq1g&usqp=CAU" alt="Team member Sarah Brown">
<p>Sarah Brown</p>
<p>Blockchain Specialist</p>
</div>
</div>
</section>
<footer>
<p>© 2024 JFcryptoassets. All rights reserved.</p>
</footer>
</body>
</html>