-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
56 lines (52 loc) · 2.15 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
<!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="css/about.css">
<title>About Us - Movie Recommendation System</title>
</head>
<body>
<!-- Header Section -->
<header>
<div class="logo">MovieRecs</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="recommendations.html">Recommendations</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- About Us Section -->
<section id="about-us" class="about-section">
<div class="about-content">
<h1>About MovieRecs</h1>
<p>MovieRecs is a cutting-edge platform designed to help movie enthusiasts discover their next favorite film based on personalized recommendations. We believe that movie discovery should be effortless and fun. With our easy-to-use interface, users can explore a wide range of movies across different genres, ensuring there's something for everyone.</p>
<h2>Our Team</h2>
<div class="team-container">
<!-- Shahid Shaikh's Profile -->
<div class="team-member">
<div class="profile-image">
<img src="assest/images/img4.jpg" alt="Shahid Shaikh">
<div class="overlay">
<h3>Shahid Shaikh</h3>
<p class="role">Developer</p>
</div>
</div>
<div class="team-info">
<p>Email:[email protected]</p>
<p>Shahid is a passionate web developer with a strong background in JavaScript, backend technologies, and web design. He is currently pursuing MCA and has a keen interest in AI, machine learning, and cybersecurity. He is responsible for developing the front-end and ensuring a smooth user experience for MovieRecs.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer>
<p>© 2024 MovieRecs. All rights reserved.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>