-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (61 loc) · 1.98 KB
/
index.html
File metadata and controls
72 lines (61 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1,
maximum-scale=5"
/>
<link rel="stylesheet" href="./styles/style.css">
<title>Devchallenges</title>
</head>
<body>
<div class="container-grid">
<header class="header">
<div class="header-1">
<h1>The Creative crew</h1>
</div>
<div class="header-2">
<h2>Who we are</h2>
<p>We are team of creatively diverse. driven. innovative individuals working in various locations from the world.</p>
</div>
</header>
<main class="section__card">
<div class="card">
<img src="./team-img/photo1.png" alt="Bill Mahoney">
<h3>Bill Mahoney</h3>
<h4>Product Owner</h4>
</div>
<div class="card">
<img src="./team-img/photo2.png" alt="Saba Cabrera">
<h3>Saba Cabrera</h3>
<h4>Art Director</h4>
</div>
<div class="card">
<img src="./team-img/photo3.png" alt="Shae Lae">
<h3>Shae Le</h3>
<h4>Tech Lead</h4>
</div>
<div class="card">
<img src="./team-img/photo4.png" alt="Shylah Lu">
<h3>Shylah Lu</h3>
<h4>UX Designer</h4>
</div>
<div class="card">
<img src="./team-img/photo5.png" alt="Griff Richards">
<h3>Griff Richards</h3>
<h4>Developer</h4>
</div>
<div class="card">
<img src="./team-img/photo6.png" alt="Stan John">
<h3>Stan John</h3>
<h4>Developer</h4>
</div>
</main>
<footer class="footer">
<p>© Created by HumbertoDevelop - devChallenges.io</p>
</footer>
</div>
</body>
</html>