forked from craigmckeachie/tech-turtles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnedret.html
48 lines (47 loc) · 1.51 KB
/
nedret.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tech Turtles</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header class="header">
<nav class="navbar">
<div class="navLeft">
<a href="index.html" class="navLogo">
<img src="images/yearup-logo.png" alt="Year Up Logo" class="logo" />
</a>
</div>
<div class="navCenter">
<a href="index.html" class="pageTitle">Tech Turtles</a>
</div>
<ul class="navMenu">
<li class="navItem">
<a href="testimonials.html" class="navLink">Testimonials</a>
</li>
<li class="navItem">
<a href="profile.html" class="navLink">Profiles</a>
</li>
<li class="navItem">
<a href="contact.html" class="navLink">Contact</a>
</li>
</ul>
</nav>
</header>
<footer class="footer">
<div class="footerContent">
<div class="footerNav">
<a href="testimonials.html" class="footerNavLink">TESTIMONIALS</a>
<a href="profile.html" class="footerNavLink">PROFILES</a>
<a href="contact.html" class="footerNavLink">CONTACT</a>
</div>
<p class="homeHeroFooterCopy">
Thank you for being part of our journey. © 2024 Tech Turtles. All
rights reserved.
</p>
</div>
</footer>
</body>
</html>