-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathemployee.html
61 lines (61 loc) · 2.7 KB
/
employee.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Employees</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="main-header">
<ul class="main-nav">
<li><a href="awards.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="employee.html">Employees</a></li>
<li><a href="about.html">About</a></li>
<li><a href="awards.html">Awards</a></li>
</ul>
</header>
</div><!--/.main-header-->
<main class="mainbody">
<div class="hello">
<h2>Say Hello To Our Kayakers</h2>
</div>
<div class="hellop">
<p>Each member of our team is a specialist in his or her field. Together, we make sure you’re having fun on the water. Like we always say, "Life is better with a kayak. Those who don't believe that, don't own a kayak."</p>
</div>
<div class="employee-container">
<div class="employee-card">
<div class="eename">
<h2>Cindy Smiles</h2>
</div>
<img class="headshots" src="images/bitgirl.jpg" alt="Image of Cindy">
<p>Cindy is originaly from Seatle, Washington. Just try and keep her off the water.</p>
</div>
<div class="employee-card">
<div class="eename">
<h2>David Danforth</h2>
</div>
<img class="headshots" src="images/bitmojiguy.jpg" alt="Image of David">
<p>David is originally from Toronto, Canada. Do you own a kayak? No? He'll put you in one.</p>
</div>
<div class="employee-card">
<div class="eename">
<h2>Tim Taylor</h2>
</div>
<img class="headshots" src="images/guy2.png" alt="Image of Tim">
<p>Tim is originally from Kodiak, Alaska. He's cooler than most. Don't ask him about Home Improvement.</p>
</div>
<div class="employee-card">
<div class="eename">
<h2>Rebekah Reese</h2>
</div>
<img class="headshots" src="images/bitmoji2ndgirl.jpg" alt="Image of Rebekah">
<p>Rebekah is originally from Los Angeles, California. She's ready for adventure.</p>
</div>
</div>
</main>
</body>
</html>