-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (67 loc) · 2.8 KB
/
Copy pathindex.html
File metadata and controls
67 lines (67 loc) · 2.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>University Notes Hub</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<style>
.container img {
width: 50px; /* Reduce the size of the Instagram logo */
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">University Notes Hub</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="quick-notes.html">Quick Notes</a></li>
<li><a href="old-question-papers.html">Question Papers</a></li>
<li><a href="doubt-solve.html">Doubt Solve</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1>Welcome to University Notes Hub</h1>
<p>Your one-stop destination for study materials, notes, and question papers.</p>
<a href="quick-notes.html" class="btn">Get Started</a>
</section>
<section class="features">
<div class="feature">
<i class="fas fa-book"></i>
<h3>Handwritten Notes</h3>
<p>Access detailed and easy-to-understand notes.</p>
</div>
<div class="feature">
<i class="fas fa-file-alt"></i>
<h3>Previous Year Papers</h3>
<p>Prepare with past exam papers for better results.</p>
</div>
<div class="feature">
<i class="fas fa-question-circle"></i>
<h3>Ask Doubts</h3>
<p>Get your doubts solved by experts and peers.</p>
</div>
</section>
<!-- Syllabus Download Section -->
<section>
<h2>Download Syllabus</h2>
<p>Click the link below to download the official syllabus for B.Com 3rd Year.</p>
<a href="https://www.mlsu.ac.in/syllabus/ug/12048_B.Com%20III%20Year%202023-24.pdf" class="btn" target="_blank">Download Syllabus Here</a>
</section>
<footer>
<p>© 2025 University Notes Hub. All rights reserved.</p>
<div class="container">
<img src="https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png" alt="Instagram Logo">
<h2>Follow Me on Instagram</h2>
<a href="https://www.instagram.com/ranawat_aaditya_/?igsh=MXB5Y3RiMjh4cTNueQ%3D%3D#" target="_blank">Visit Profile</a>
</div>
</footer>
</body>
</html>