-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 1.95 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Session 3 Take home</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
<style>
.element {
width: 256px;
height: 100%;
}
</style>
</head>
<body style="background-color: snow;">
<h1><span style="color: indigo;"> Meet the Team</span></h1>
<h3>The Team that makes software awesome</h3>
<div class="element" style="background-color: darkcyan;">
<img
src="https://avatars.dicebear.com/api/avataaars/annakendrick.svg"
height="100px"
width="100px"
/>
<h2><span style="color: beige;">Anna Kendrick</span></h2>
<h3><span style="color: beige;"> Front-end Ninja</span></h3>
<p>
<span style="color: beige;">
Bibliophile, loves to dive into fictional worlds, ships JS code like
brownies</span
>
</p>
</div>
<div class="element" style="background-color: cornsilk;">
<img
src="https://avatars.dicebear.com/api/avataaars/harryfn.svg"
alt="center"
height="100px"
width="100px"
/>
<h2><span style="color: darkslategray;"> Harry Fawn</span></h2>
<h3><span style="color: darkslategray;"> Illustrator</span></h3>
<p>
<span style="color: darkslategray;">
Creates new illustrations each week, will kill for coffee, and loves
beaches.</span
>
</p>
</div>
<div class="element" style="background-color: dodgerblue;">
<img
src="https://avatars.dicebear.com/api/avataaars/sofiasul.svg"
height="100px"
width="100px"
/>
<h2><span style="color: lightcyan;"> Sofia Sultan</span></h2>
<h3><span style="color: lightcyan;">Backend Engineer</span></h3>
<p>
<span style="color: lightcyan;">
Donuts over waffles. Martinis over whiskeys. Typescript over anything.
</span>
</p>
</div>
</body>
</html>