-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (56 loc) · 2.17 KB
/
Copy pathindex.html
File metadata and controls
60 lines (56 loc) · 2.17 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kimberly Bryant - Innovator</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" />
<link rel="stylesheet" href="../project.css" />
<style>
.bubble {
color: white;
padding: 15px;
margin: 10px;
border-radius: 25px;
font-weight: 500;
}
.bubble1 { background-color: #1b75bc; }
.bubble2 { background-color: #f26522; }
.bubble3 { background-color: #00a651; }
.bubble4 { background-color: #92278f; }
.bubble5 { background-color: #ed1c24; }
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">Project</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="team.html">Team</a></li>
<li class="nav-item active"><a class="nav-link" href="index.html">Innovator</a></li>
<li class="nav-item"><a class="nav-link" href="process.html">Process</a></li>
</ul>
</div>
</nav>
<div class="container mt-4">
<h1 class="text-center">Teaching the Youth Tech with Kimberly Bryant</h1>
<div class="text-center">
<img src="https://via.placeholder.com/500x200" alt="Kimberly Bryant" class="img-fluid mb-3">
</div>
<div class="row">
<div class="col-md-6">
<img src="https://via.placeholder.com/300x100" alt="Black Girls Code logo" class="img-fluid mb-3">
</div>
<div class="col-md-6">
<div class="bubble bubble1">Filler quote 1 about Kimberly's mission.</div>
<div class="bubble bubble2">Filler quote 2 about youth education.</div>
<div class="bubble bubble3">Filler quote 3 about tech innovation.</div>
<div class="bubble bubble4">Filler quote 4 about BGC impact.</div>
<div class="bubble bubble5">Filler quote 5 about accessibility and diversity.</div>
</div>
</div>
<div class="text-right mt-3">
<a href="innovatorp2.html" class="btn btn-primary">Next</a>
</div>
</div>
</body>
</html>