-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (84 loc) · 3.13 KB
/
Copy pathindex.html
File metadata and controls
89 lines (84 loc) · 3.13 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
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
<!DOCTYPE html>
<html lang="en" data-lt-installed="true">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Team presentation web page">
<link rel="icon" href="resources/favicon.ico" type="image/x-icon" sizes="96x96"/>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?
family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Outfit:wght@100..900&display=swap"
rel="stylesheet"
>
<title>Meet the Team Section | devChallenges.io</title>
</head>
<body>
<div class="page-wrapper">
<div class="content-container">
<!--Page header-->
<header>
<p class="our_team">Our team</p>
<h1>Meet the brain</h1>
<p class="header_text">
We are proud to have them as part of our community and look forward to continuing
to push the boundaries of what's possible in the world of digital art.
</p>
</header>
<!--Team members-->
<div class="card card_1">
<img src="resources/person_1.png" alt="member1">
<img src="resources/Gradient.svg" alt="edit">
<div class="emp-detail">
<p class="emp-name">Liam Novak</p>
<p class="emp-role">Software Engineer</p>
</div>
</div>
<div class="card card_2">
<img src="resources/person_2.png" alt="member2">
<img src="resources/Gradient.svg" alt="edit">
<div class="emp-detail">
<p class="emp-name">Sophia Moretti</p>
<p class="emp-role">Business Development Manager</p>
</div>
</div>
<div class="card card_3">
<img src="resources/person_3.png" alt="member3">
<img src="resources/Gradient.svg" alt="edit">
<div class="emp-detail">
<p class="emp-name">Ethan Rossi</p>
<p class="emp-role">Business Development Manager</p>
</div>
</div>
<div class="card card_4">
<img src="resources/person_4.png" alt="member4">
<img src="resources/Gradient.svg" alt="edit">
<div class="emp-detail">
<p class="emp-name">Isabella Ricci</p>
<p class="emp-role">UX Designer</p>
</div>
</div>
<div class="card card_5">
<img src="resources/person_5.png" alt="member5">
<img src="resources/Gradient.svg" alt="edit">
<div class="emp-detail">
<p class="emp-name">Noah Conti</p>
<p class="emp-role">Content Creator</p>
</div>
</div>
</div>
<div class="more-info">
<p>
See all members <a href="#"><span> <img src="resources/arrow up right.svg" alt="link"> </span></a>
</p>
</div>
</div>
<div class="author-info">
Coded by <a href="#">Chibuikem Adrian</a> | Challenge by
<a href="https://www.devchallenges.io?ref=challenge" target="_blank"
>devChallenges.io</a
>.
</div>
</body>
</html>