-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactus.html
More file actions
67 lines (64 loc) · 2.26 KB
/
contactus.html
File metadata and controls
67 lines (64 loc) · 2.26 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">
<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="index.html">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="content">
<section class="hero-section" style="background-image: url('C1.jpg');height: 80vh;">
<div class="overlay">
<h1>CONTACT US</h1>
</section>
<section class="notestech-banner">
<p>@NOTESTECH- DIGITAL STUDY</p>
<p>@KUK STUDY MATERIAL FOR BACHELOR OF COMPUTER APPLICATION.</p>
</section>
<section class="contact-section">
<div class="contact-container">
<h1>Contact Us:</h1>
<p><strong>Have a question, feedback, or want to contribute to our ever-evolving study materials?</strong>
Reach out to us at <a href="mailto:keshavg478@gmail.com">keshavg478@gmail.com</a>.
Your input is like a breath of fresh air, helping us keep this site vibrant and up-to-date.
</p>
<p class="bottom-text">
Feel free to drop us a message anytime
</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>
</body>
</html>
<script src="script.js"></script>