-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
53 lines (49 loc) · 1.57 KB
/
about.html
File metadata and controls
53 lines (49 loc) · 1.57 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travel Bloom</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Raleway:wght@700&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<link rel="icon" href="public/logo.svg" type="image/x-icon" />
</head>
<body>
<nav class="navbar">
<div class="nav-inner">
<div class="nav-left">
<img src="public/logo.svg" id="logo" />
<span class="site-title">Travel Bloom</span>
</div>
<div class="nav-toggle" onclick="toggleNav()">☰</div>
<div class="nav-center">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
</div>
</nav>
<div class="layout-wrapper">
<header class="hero">
<div class="hero-content">
<h1>About Us</h1>
<p style="max-width: 600px">
Welcome to our Company. We are a team of dreamers, designers, and
developers who wanted to build a platform that inspires people to
explore the world with intention.
</p>
</div>
</header>
</div>
<div id="team-section"></div>
<footer>
<p>
Follow us: <a href="#">Instagram</a> | <a href="#">Facebook</a> |
<a href="#">Twitter</a>
</p>
</footer>
</body>
</html>