-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbtech.html
More file actions
89 lines (75 loc) · 2.54 KB
/
btech.html
File metadata and controls
89 lines (75 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Comming Soon | NoteHub</title>
<link rel="stylesheet" href="../assets/css/styles.css">
<link rel="icon" type="image/x-icon" href="../assets/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
.coming-soon {
text-align: center;
padding: 100px 20px;
}
.coming-soon-title {
font-size: 48px;
margin-bottom: 20px;
}
.coming-soon-message {
font-size: 24px;
margin-bottom: 40px;
}
.coming-soon a {
text-decoration: none;
color: #fff;
background-color: #007BFF;
padding: 12px 24px;
border-radius: 5px;
font-size: 18px;
}
.coming-soon a:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<header class="header">
<div class="container">
<nav class="navbar">
<div class="logo">
<span class="logo-icon">📚</span>
<span class="logo-text">NoteHub</span>
</div>
<ul class="nav-menu" id="navMenu">
<li><a href="../index.html">Home</a></li>
<li><a href="../school.html" >School</a></li>
<li><a href="../college.html">College</a></li>
<li><a href="../about.html">About</a></li>
<li><a href="../contact.html">Contact</a></li>
</ul>
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</div>
</header>
<section class="coming-soon">
<div class="container">
<h1 class="coming-soon-title">Coming Soon!</h1>
<p class="coming-soon-message">We're working hard to bring you this feature. Stay tuned!</p>
<a href="../index.html" class="btn-primary">Back to Home</a>
</div>
</section>
<footer class="footer">
<div class="container">
<p class="footer-credit">Made with 💙 by Gaurav, Nikhil & Devansh</p>
<p class="footer-copyright">© 2025 NoteHub StudySpace</p>
</div>
</footer>
<button id="backToTop" class="back-to-top">↑</button>
<script src="../assets/js/main.js"></script>
</body>
</html>