-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.html
123 lines (121 loc) · 7.42 KB
/
about.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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href="styles.css">
<title>Team Gnocchi about</title>
</head>
<body data-bs-theme="dark">
<!-- Navbar -->
<header class="site-navigation">
<div class="container">
<nav class="navbar bg-dark navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="index.html"><img src="./img/gnocchi.png" style="height: 45px;"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Practice</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Sprints
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="./sprint1/dashboard.html">Sprint #1</a></li>
<li><a class="dropdown-item" href="./sprint2/dashboard.html">Sprint #2</a></li>
<li><a class="dropdown-item" href="#">Sprint #3</a></li>
<li><a class="dropdown-item" href="#">Sprint #4</a></li>
<li><a class="dropdown-item" href="#">Sprint #5</a></li>
<li><a class="dropdown-item" href="#">Sprint #6</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<main class="site-content">
<div class="container">
<br>
<p class="fs-1 text-center site-title">About</p>
<hr>
<p class="fs-6 fw-medium">Meet the team:</p>
<div class="container text-center">
<div class="row">
<!-- Blake Hansen -->
<div class="col-sm-4">
<img src="./img/dogecoin.jpeg" class="img-fluid border rounded-top">
<p class="fs-5 fw-medium border border-top-0 border-bottom-0 mb-0 pt-3">Blake Hansen</p>
<p class="border border-top-0 rounded-bottom p-2">
3rd year programming student, Eagle Scout and live in Kent.
Enjoy exploring Seattle and discoving new animes on Hulu and Netflix.
I hope to work for Elon and perfect the X wallet with Dogecoin!
</p>
</div>
<!-- Pedro Valdovinos-Reyes -->
<div class="col-sm-4">
<img src="./img/PedroCatpic.png" class="img-fluid border rounded-top">
<p class="fs-5 fw-medium border border-top-0 border-bottom-0 mb-0 pt-3">Pedro Valdovinos-Reyes</p>
<p class="border border-top-0 rounded-bottom p-2">
Hi, my name is Pedro Valdovinos-Reyes.
I enjoy playing video games and working out when I have free time.
I also have recently tried learning how to play guitar.
I am a third year programming student at Green River College hoping to find internship opportunities this summer!
</p>
</div>
<!-- Brandon Viorato -->
<div class="col-sm-4">
<img src="./img/skittle.jpg" class="img-fluid border rounded-top">
<p class="fs-5 fw-medium border border-top-0 border-bottom-0 mb-0 pt-3">Brandon Viorato</p>
<p class="border border-top-0 rounded-bottom p-2">
Hello! I'm Brandon. I enjoy programming!
I also enjoy working on cars! I have two cats: Skittle and Nugget.
Only Skittle is pictured on here though for now.
</p>
</div>
</div>
<div class="row">
<div class="col-sm-2"></div>
<!-- David Jarvis -->
<div class="col-sm">
<img src="https://placehold.co/350x445" class="img-fluid border rounded-top">
<p class="fs-5 fw-medium border border-top-0 border-bottom-0 mb-0 pt-3">David Jarvis</p>
<p class="border border-top-0 rounded-bottom p-2">
About me!
</p>
</div>
<!-- Abdul Rahmani -->
<div class="col-sm">
<img src="https://placehold.co/350x445" class="img-fluid border rounded-top">
<p class="fs-5 fw-medium border border-top-0 border-bottom-0 mb-0 pt-3">Abdul Rahmani</p>
<p class="border border-top-0 rounded-bottom p-2">
About me!
</p>
</div>
<div class="col-sm-2"></div>
</div>
</div>
</div>
</main>
<!-- Required JavaScript -->
<!-- Popper.js, then Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
</body>
</html>