-
Notifications
You must be signed in to change notification settings - Fork 0
/
people.html
58 lines (55 loc) · 2.84 KB
/
people.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>People</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header class='topnav' id='myTopnav'>
<a href='index.html' class='bigname'><h3>GCP</h3></a>
<nav>
<ul class = 'navlinks'>
<li><a href="resources.html">Resources</a></li>
<li><a href="songs.html">Playlist</a></li>
<li><a href="monthly.html">Monthly</a></li>
<li><a href="weekly.html">Weekly</a></li>
<li class='active'><a href="people.html">People</a></li>
</ul>
</nav>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class='fa fa-bars'></i>
</a>
</header>
<div class="container">
<h1 class = 'title'>Our Group Leaders</h1>
<h3 id = 'job'>President <br> Noah Bright </h3>
<div class="bio" id='president'>
<img src="2020pictures/me.png" alt="Noah Bright">
<p>I'm Noah. I'm a Physics Major with minors in math and chemistry. I am aiming to go to graduate school in Physics or Applied Mathematics. I've been playing guitar for four years now. My favorite bands and arists are Guns n Roses, John Mayer, and Jimi Hendrix.</p>
</div>
<h3 id = "job">Vice President <br> Nick Tedesco </h3>
<div class="bio" id = 'vicepres'>
<img src="2020pictures/nick.PNG" alt="Nick Tedesco">
<p>I'm Nick, a Molecular Biology and Public/Professional Writing double major who wants to work in the biomedical research field. I've been playing guitar consistently for around three years, and I really like 90's alternative and grunge music. </p>
</div>
<h3 id = 'job'>Treasurer <br> Sam Pcola </h3>
<div class="bio" id='treasurer'>
<img src="2020pictures/sam.JPG" alt="Sam Pcola">
<p>Hi, I’m Sam! I’m a biology major with a minor in chemistry. After graduation, I’m planning to pursue a career as a Physician Assistant. I started playing the guitar when I was in high school and have really only played “casually” ever since. I like to sing and play so if I must admit...I’ve stuck to the typical “4 chords that can play any song”, although I have recently attempted to learn some finger picking. I’m excited for this semester and I look forward to getting to know you all!</p>
</div>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>