-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
96 lines (88 loc) · 4.72 KB
/
about.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
<!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="footer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=DynaPuff:[email protected]&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Afacad+Flux:[email protected]&family=DynaPuff:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css files/about.css">
</head>
<body>
<nav class="navbar">
<div class="brand">
<i class="fas fa-utensils"></i> चमmuch
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="Menu.html">Menu</a></li>
<li id="login-signup">
<a href="login.html">Login</a> | <a href="signup.html">Signup</a>
</li>
<li id="logout-profile" style="display: none;">
<a href="profile.html">Profile</a> | <a href="#" id="logout">Logout</a>
</li>
</ul>
</nav>
<section id="about">
<div class="container">
<h1>About चमmuch</h1>
<div class="about-content">
<div class="about-image">
<img src="./images/canteen.png" alt="Canteen Image">
</div>
<div class="about-text">
<p>Welcome to the heart of the college, where flavors meet friendship and good vibes! Our college canteen has been serving students, faculty, and staff with a variety of delicious meals, snacks, and beverages for years. Whether you're craving something healthy, something sweet, or just need a quick bite between classes, we've got you covered.</p>
<p>We pride ourselves on using fresh ingredients and ensuring a clean and welcoming environment for everyone. With affordable prices and a menu that caters to every taste bud, the canteen is not just a place to eat — it's a place to connect, unwind, and recharge.</p>
<p><strong>Our Mission</strong> is to offer quality food and beverages, creating a space where everyone can relax, share stories, and enjoy a warm atmosphere amidst the hustle and bustle of college life.</p>
</div>
</div>
</div>
</section>
<div class="divider"></div>
<section id="team">
<div class="container">
<h2>Our Team</h2>
<div class="team-cards">
<div class="team-member">
<img src="./images/abhi.jpg" alt="Abhivyakti Pal">
<h3>Abhivyakti Pal</h3>
<div class="social-links">
<a href="https://www.linkedin.com/in/abhivyakti-pal" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/abhivyakti2" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.instagram.com/abhivyakti_pal" target="_blank"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="team-member">
<img src="./images/anshika.jpg" alt="Member 3">
<h3>Anshika Pahal</h3>
<div class="social-links">
<a href="https://www.linkedin.com/in/anshika-pahal" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/anshxika" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="team-member">
<img src="./images/chitra.jpg" alt="Chitra Kumari">
<h3>Chitra Kumari</h3>
<div class="social-links">
<a href="hhttps://www.linkedin.com/in/chitra-kadyan" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/Chitrakadyan2005" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.instagram.com/chitrakadyan_" target="_blank"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</section>
<div id="footer"></div>
<script>
fetch('footer.html')
.then(response => response.text())
.then(data => {
document.getElementById('footer').innerHTML = data;
});
</script>
<script src="./js files/navbar.js"></script>
</body>
</html>