forked from Anburaj07/Travelo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopersPage.html
113 lines (91 loc) · 5.51 KB
/
developersPage.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Developers</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="icon" type="image/x-icon" href="./IMAGES/favicon-32x32.png">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"
integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8=" crossorigin="anonymous"></script>
<script>
$(function () {
$("#header").load("user_header.html");
$("#footer").load("user_footer.html");
});
</script>
<link rel="stylesheet" href="./style/developersPage.css">
</head>
<body>
<!-- navigation bar starts here -->
<header id="header"></header>
<!-- navigation bar ends here -->
<!-- Main section -->
<main>
<div class="container">
<h2>About our website</h2>
<p>Our tours and travel website is dedicated to providing you with unique and memorable travel experiences. We believe that travel should be about discovering new places, learning about different cultures, and making connections with people from around the world.
To make this possible, we carefully curate each of our travel packages to ensure that they offer something special and authentic. Whether you're looking to explore ancient ruins, hike through stunning landscapes, or relax on a beautiful beach, we have a package that's perfect for you.
Our team of experienced travel experts is passionate about helping you plan the trip of a lifetime. We use the latest technology and tools to make the booking process easy and convenient, and we're always available to answer any questions you may have.
We're proud to use cutting-edge technology and innovative solutions to provide you with the best possible travel experience. Our website is built with modern web development tools and frameworks, including HTML, CSS, JavaScript, which help us deliver a fast and responsive website that's optimized for both desktop and mobile devices.
Thank you for choosing us as your travel partner. We look forward to helping you create memories that will last a lifetime.</p>
<div class="TechRes">
<div class="tech-stacks">
<h2>The Technologies We Work With</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>jQuery</li>
<li>Bootstrap</li>
</ul>
</div>
<div class="notes-resources">
<h2>Notes and Resources</h2>
<ul>
<li><a href="https://fontawesome.com/icons/categories/humanitarian" target="_blank" rel="noopener noreferrer">Font Awesome Icons</a> <span class="tag">icons</span> <span class="tag">font</span></li>
<li><a href="https://www.incredibleindia.org/content/incredible-india-v2/en.html" target="_blank" rel="noopener noreferrer">Incredible India</a> <span class="tag">tourism</span> <span class="tag">culture</span></li>
<li><a href="https://www.freepik.com/" target="_blank" rel="noopener noreferrer">Freepik</a> <span class="tag">graphics</span> <span class="tag">design</span></li>
<li><a href="https://imagecolorpicker.com/en" target="_blank" rel="noopener noreferrer">Image Color Picker</a> <span class="tag">color</span> <span class="tag">tool</span></li>
<li><a href="https://uiverse.io/" target="_blank" rel="noopener noreferrer">Uiverse</a> <span class="tag">resources</span> <span class="tag">design</span> <span class="tag">development</span></li>
</ul>
</div>
</div>
<h2>Meet Our Amazing Team</h2>
<div class="team-container">
<div class="team-member">
<img src="./IMAGES/TeamImg/Anubraj.jpg" alt="Developer 1">
<h3>Anburaj S
</h3>
<p>Team Lead</p>
</div>
<div class="team-member">
<img src="./IMAGES/TeamImg/Aushutosh.jpg" alt="Developer 2">
<h3>Ashutosh Kumar</h3>
<p>Full Stack Developer</p>
</div>
<div class="team-member">
<img src="./IMAGES/TeamImg/Alka.jpg" alt="Developer 3">
<h3>Alka Sinha</h3>
<p>Full Stack Developer</p>
</div>
<div class="team-member">
<img src="./IMAGES/TeamImg/Abhijit.png"alt="Developer 3">
<h3>Abhijit Barman</h3>
<p>FullStack Developer</p>
</div>
<div class="team-member">
<img src="./IMAGES/TeamImg/Piyush.png" alt="Developer 3">
<h3>Piyush Sharma</h3>
<p>Front-End Developer</p>
</div>
</div>
</div>
</main>
<!-- footer section starts here -->
<div id="footer"></div>
<!-- footer section ends here -->
</body>
</html>