-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteam.html
70 lines (68 loc) · 4.49 KB
/
team.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Card</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Team</h2>
<p><strong>The history of the internet.</strong> </p>
<p>by Andrew Drumm</p>
<div class="container">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Pieces of History
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="about.html">About</a>
<a class="dropdown-item" href="browserwars.html">Browser Wars</a>
<a class="dropdown-item" href="dot_com.html">Dot Com Bubble</a>
<a class="dropdown-item" href="invention.html">Invention of the Internet</a>
<a class="dropdown-item" href="people.html">People</a>
<a class="dropdown-item" href="search.html">Search</a>
<a class="dropdown-item" href="team.html">Team</a>
<a class="dropdown-item" href="timeLine.html">Historic Timeline</a>
</li>
</ul>
</div>
</nav>
<h2>Andrew Drumm</h2>
<p>Industrial Engineer with 7 years manufacturing industry experience. BS in Industrial Engineering from NJIT. BS in Engineering Management from the University of Parma in Italy.</p>
<div class="card img-fluid" style="width:500px">
<img class="card-img-top" src=".\images\adrumm.png" alt="Card image" style="width:100%">
<div class="card-img-overlay">
<p class="card-text">.</p>
<a href="https://www.linkedin.com/in/andrew-drumm-2b4a0916/" class="btn btn-primary">LinkedIn Profile</a>
</div>
</div>
</div>
<p> </p>
<div class="container">
<h2>William Herman</h2>
<p>William grew up in Tinton Falls, NJ and developed a passion for information technology while recognizing the impact bad data can have on a corporation while interning. He had the goal to work on an in house application where he would be able to have a major impact on the way the application is used and works. This passion and goal was ignited while working on a nonprofit's Salesforce and after graduating with a degree in MIS he started working full time in a tile factory as an IT administrator. After a few months his passion began to burn less bright, as the frustration of working with IT vendors made him feel useless and not critical to his company's success. William received a job offer to be a system admin for a company's in house contract management system where he currently works while working to obtain a Master's of Science in Information Systems.</p>
<div class="card img-fluid" style="width:500px">
<img class="card-img-top" src=".\images\wherman.png" alt="Card image" style="width:100%">
<div class="card-img-overlay">
<p class="card-text">.</p>
<a href="https://www.linkedin.com/in/william-herman25/" class="btn btn-primary">LinkedIn Profile</a>
</div>
</div>
</div>
</div>
</body>
</html>