forked from valfragier16/JavaScript-DOM
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (86 loc) · 2.37 KB
/
index.html
File metadata and controls
88 lines (86 loc) · 2.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Minority Tech</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="./styles.css" />
</head>
<body>
<div class="icons">
<img class="fist" src="./images/fist.png" alt="fist" />
<img class="laptop" src="./images/laptop.svg" alt="fist" />
</div>
<header>
<h1>Minority Tech</h1>
<p class="para" id="paraOne"></p>
<p class="para" id="paraTwo"></p>
</header>
<main>
<div class="tech">
<div class="techie">
<h3>Stacy Spikes</h3>
<img
class="image"
src="./images/Stacy Spikes.jpg"
alt="Granville Woods"
/>
</div>
<div class="techie">
<h3>Katherine Johnson</h3>
<img
class="image"
src="./images/Katherine Johnson.jpg"
alt="Katherine Johnson"
/>
</div>
<div class="techie">
<h3>Annie J. Easley</h3>
<img
class="image"
src="./images/Annie J. Easley.jpg"
alt="Annie J. Easley"
/>
</div>
<div class="techie">
<h3>Kathryn Finney</h3>
<img
class="image"
src="./images/Kathryn Finney .jpg"
alt="Kathryn Finney"
/>
</div>
<div class="techie">
<h3>Kimberly Bryant</h3>
<img
class="image"
src="./images/Kimberly Bryant.jpg"
alt="Kimberly Bryant"
/>
</div>
<div class="techie">
<h3>Jessie Woolley-Wilson</h3>
<img
class="image"
src="./images/Jessie Woolley-Wilson.jpeg"
alt="Jessie Woolley-Wilson"
/>
</div>
<div class="techie">
<h3>Guy Primus</h3>
<img class="image" src="./images/Guy Primus.jpg" alt="Guy Primus" />
</div>
<div class="techie">
<h3>David L. Steward</h3>
<img
class="image"
src="./images/David L. Steward.jpg"
alt="David L. Steward"
/>
</div>
</div>
</main>
<script src="./script.js"></script>
</body>
</html>