-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaboutus.html
86 lines (83 loc) · 2.87 KB
/
aboutus.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="aboutus.css">
</head>
<body>
<div class="logo">
<img src="LOGO.png" alt="Roam City Logo">
</div>
<header>
<nav>
<a href="index.html">Home</a>
<a href="traveltips.html">Travel Tips</a>
<a href="aboutus.html">About Us</a>
<a href="contactus.html">Contact Us</a>
</nav>
</header>
<section class="intro">
<div class="content">
<h1>Hi, Ghummakads!!!!</h1>
<p>
We’re Ayush, Pranay & Hirdyansh, the creators behind the urban travel blog
<span>Roam to the City</span>.Our passion for culture, history, architecture, photography,
and design inspired us to launch Roam to the City in December 2024.
</p>
<p>
Travelling and living across various cities have broadened our perspectives on
life and culture. Now, based in <span>Pune</span>, we’re on a mission to
help you explore the most exciting cities and guide you towards the
landmarks and experiences that truly matter.
</p>
</div>
<div class="image">
<img src="LOGO.png" alt="APH image">
</div>
</section>
<section class="stats">
<div class="stat">
<h2>1500+</h2>
<p>People Daily Visit Our Web</p>
</div>
<div class="stat">
<h2>40+</h2>
<p>Cities Visited</p>
</div>
<div class="stat">
<h2>3</h2>
<p>Cities Lived</p>
</div>
<div class="stat">
<h2>50+</h2>
<p>Customer Take Our Paid City Exploration</p>
</div>
</section>
<footer>
<div class="footer-sec">
<h3>Popular Cities</h3>
<ul>
<li><a href="shi.html">Shilong</a></li>
<li><a href="varanasi.html">Varanasi</a></li>
<li><a href="goa.html">Goa</a></li>
<li><a href="jaipur.html">Jaipur</a></li>
</ul>
</div>
<div class="footer-sec">
<h3>Our Company</h3>
<ul>
<li><a href="terms.html">Terms and Conditions</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>
<div class="footer-quote">
<div class="logo-footer" style="font-style: normal;">Roam To</div>
<div class="logo-footer" style="font-style: normal;">The City</div>
</div>
</footer>
</body>
</html>