-
Notifications
You must be signed in to change notification settings - Fork 0
/
flex-box.html
48 lines (42 loc) · 1.31 KB
/
flex-box.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="flex-box.css">
<title>Flex Box Tutorial</title>
</head>
<body>
<div id="container">
<header>
<h1>Animated Photo Banner</h1>
</header>
<div class="container">
<div class="member-card">
<img src="images/team/wilson.jpg" alt="Profile Image" class="profile-image">
<h2 class="member-name">Wilson Sedze</h2>
<h5 class="member-post">Projects Director</h5>
<h4>Areas of Intrest</h4>
<p>IOT</p>
<ul class="social-links">
<li>
<a class="social-links" href="" target="_blank">
<img class="socials" src="images/twitter.png" alt="Twitter">
</a>
</li>
<li>
<a class="social-links" href="" target="_blank">
<img class="socials" src="images/github.png" alt="GitHub">
</a>
</li>
<li>
<a class="social-links" href="" target="_blank">
<img class="socials" src="images/linkedin.png" alt="LinkedIn">
</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>