-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeople.html
94 lines (84 loc) · 2.7 KB
/
people.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Teams</title>
<style>
/* Add your custom CSS styles here */
.team-member {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.team-member img {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 10px;
}
</style>
</head>
<body>
<header>
<h1>Our Teams</h1>
</header>
<main>
<section>
<h2>Engineering Team</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed et ante sed purus eleifend consequat. Quisque
efficitur urna quis velit feugiat, nec lobortis risus varius.</p>
<div class="team-member">
<img src="john-doe.jpg" alt="John Doe">
<span>John Doe - Lead Engineer</span>
</div>
<div class="team-member">
<img src="jane-smith.jpg" alt="Jane Smith">
<span>Jane Smith - Software Developer</span>
</div>
<div class="team-member">
<img src="mark-johnson.jpg" alt="Mark Johnson">
<span>Mark Johnson - UI/UX Designer</span>
</div>
</section>
<section>
<h2>Sales Team</h2>
<p>Integer cursus tortor vel nulla iaculis, in tincidunt felis feugiat. Vestibulum id ipsum sed tellus blandit
iaculis. Vestibulum eu aliquet erat, in lobortis nunc.</p>
<div class="team-member">
<img src="emily-davis.jpg" alt="Emily Davis">
<span>Emily Davis - Sales Manager</span>
</div>
<div class="team-member">
<img src="mike-anderson.jpg" alt="Mike Anderson">
<span>Mike Anderson - Account Executive</span>
</div>
<div class="team-member">
<img src="sarah-brown.jpg" alt="Sarah Brown">
<span>Sarah Brown - Business Development</span>
</div>
</section>
<section>
<h2>Marketing Team</h2>
<p>Nulla bibendum, ex vitae facilisis efficitur, elit ipsum mollis lorem, et pellentesque enim tellus ac libero.
Fusce tincidunt sagittis tortor, et volutpat nisi interdum id.</p>
<div class="team-member">
<img src="david-wilson.jpg" alt="David Wilson">
<span>David Wilson - Marketing Manager</span>
</div>
<div class="team-member">
<img src="amy-thompson.jpg" alt="Amy Thompson">
<span>Amy Thompson - Content Writer</span>
</div>
<div class="team-member">
<img src="michael-lee.jpg" alt="Michael Lee">
<span>Michael Lee - SEO Specialist</span>
</div>
</section>
</section>
</main>
<footer>
<p>© 2023 Company Name. All rights reserved.</p>
</footer>
</body>
</html>