-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout Us.html
36 lines (36 loc) · 1.63 KB
/
About Us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/3/w3.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=Montserrat:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/styles/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="shortcut icon" href="Images/Sign Logo.ico" type="Image/x-icon">
<script src="scripts/main.js"></script>
<link rel="stylesheet" href="about-us.css"> <!-- Link to the About Us CSS -->
<title>About Us</title>
</head>
<body>
<header class="Header">
<div class="logo">
<img src="/Images/Sign Logo.png" alt="logo">
<div class="title-slogan">
<h1>Life Path App</h1>
<h2 class="slogan">Chart Your Path</h2>
</div>
</div>
<nav class="navbar">
<div class="main-menu">
<ul>
<li><a class="btn btn" href="index.html" class="btn">Home</a></li>
<li><a class="btn btn" href="Sign Up.html" class="btn">Sign Up</a></li>
</ul>
</div>
</nav>
</header>
</body>
</html>