-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (84 loc) · 2.6 KB
/
index.html
File metadata and controls
90 lines (84 loc) · 2.6 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NoteSolves Navbar</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
</head>
<body>
<!-- navbar -->
<nav class="navbar">
<div class="logo"><img src="https://cdn-icons-png.flaticon.com/512/29/29302.png" alt="Book" />
<span>NotesTech</span></div>
<ul class="nav-links" id="navLinks">
<li><a href="About.html">About</a></li>
<li><a href="#">Material</a></li>
<li><a href="contactus.html">Contact</a></li>
</ul>
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
<!-- main class -->
<main class="content">
<!-- hero section -->
<section class="hero-section" style="background-image: url('hero.jpg'); height: 100vh;">
<div class="overlay">
<h1>PREPRATION MATERIAL</h1>
<h2>Exciting Changes Coming Soon!</h2>
<p>
We're thrilled to share that significant improvements are on the horizon.
In the coming days, promising an enhanced user experience.
</p>
</div>
</section>
<div class="main-footer">
<div class="footer-bottom">
<p style="font-size: xx-large;"><B>CONTENT</B> </p>
</div>
</div>
<section class="resource-section">
<div class="resource-card">
<a href="syllabus.html">
<img src="syllabus.png" alt="Books">
</a>
<p>SYLLABUS</p>
</div>
<div class="resource-card">
<a href="notes.html">
<img src="Notes.png" alt="Assignments"></a>
<p>NOTES</p>
</div>
<div class="resource-card">
<a href="pyqs.html">
<img src="PYQ.png" alt="Projects"></a>
<p>PYQS</p>
</div>
<div class="resource-card">
<a href="practicals.html">
<img src="PRACTICALS.png" alt="Webinars"></a>
<p>PRACTICALS</p>
</div>
</section>
</main>
<!-- Footer Section -->
<footer class="main-footer">
<div class="footer-top">
<div class="footer-left">
<p>Your generosity fuels our platform's growth. Scan the QR code using Contact with us.</p>
<p class="highlight">Even the smallest contribution creates a substantial impact on our mission.</p>
</div>
<div class="footer-right">
<img src="QR.jpeg" alt="QR Code" />
</div>
</div>
<div class="footer-bottom">
<p>© 2024 NotesTech™ | <a href="#">Disclaimer</a></p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>