-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
55 lines (55 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/favicon.ico">
<link rel="stylesheet" href="./stylesheets/shared.css">
<link rel="stylesheet" href="./stylesheets/team.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Chewy&family=Indie+Flower&family=Judson:ital,wght@0,400;0,700;1,400&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<script defer src="./javascript/shared.js" type="module"></script>
<title>Pawsitivity Partners</title>
</head>
<body class="team--page">
<header>
<nav class="mobile--nav" role="navigation">
<button class="mobile--nav-hamburger" aria-label="Toggle navigation menu" aria-expanded="false" tabindex="1">
<div class="mobile--nav-hamburger-top"></div>
<div class="mobile--nav-hamburger-middle"></div>
<div class="mobile--nav-hamburger-bottom"></div>
</button>
<div class="mobile--nav-menu mobile--nav-menu_hidden" aria-hidden="true">
<a href="/" role="menuitem" tabindex="-1"><button class="mobile--nav-button mobile--nav-button_home">HOME</button></a>
<a href="team.html" role="menuitem" tabindex="-1"><button class="mobile--nav-button mobile--nav-button_meet">MEET THE GANG</button></a>
<a href="contact.html" role="menuitem" tabindex="-1"><button class="mobile--nav-button mobile--nav-button_contact">CONTACT US</button></a>
</div>
</nav>
<nav class="desktop--nav" role="navigation">
<div>
<a href="/" aria-label="Home"><i class="fa-solid fa-paw desktop--nav-paw"></i></a>
</div>
<div class="desktop--nav--buttons-container">
<a href="team.html" tabindex="-1"><button class="navigation--button">MEET THE GANG</button></a>
<a href="contact.html" tabindex="-1"><button class="navigation--button">CONTACT US</button></a>
</div>
</nav>
</header>
<main>
<h1 class="team--main-header">MEET THE GANG</h1>
<section class="team-section">
<div class="team-container">
</div>
</section>
</main>
<footer>
<div class="footer-text">
<p>Created by Anxhela and Jess</p>
<i class="fa-solid fa-paw footer-paw"></i>
</div>
<a href="https://github.com/fac31/AgencyWebsite---Jess-Anxhela"><i class="fa-brands fa-github footer-icon"></i></a>
</footer>
</body>
</html>