-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcollege.html
More file actions
84 lines (76 loc) · 3.11 KB
/
college.html
File metadata and controls
84 lines (76 loc) · 3.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>College Notes - 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">
</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" class="active">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>
<div class="breadcrumb">
<div class="container">
<a href="index.html">Home</a> / <span>College</span>
</div>
</div>
<section class="content-section">
<div class="container">
<h1 class="page-title">Select Your Course</h1>
<p class="page-description">Choose your course to access semester-wise organized notes</p>
<div class="cards-grid">
<a href="bca.html" class="content-card">
<div class="card-icon">💻</div>
<h3>BCA</h3>
<p>Bachelor of Computer Applications - 3 Years</p>
</a>
<a href="btech.html" class="content-card">
<div class="card-icon">⚙️</div>
<h3>B.Tech</h3>
<p>Bachelor of Technology - 4 Years</p>
</a>
<a href="bba.html" class="content-card">
<div class="card-icon">💼</div>
<h3>BBA</h3>
<p>Bachelor of Business Administration - 3 Years</p>
</a>
<a href="mba.html" class="content-card">
<div class="card-icon">📊</div>
<h3>MBA</h3>
<p>Master of Business Administration - 2 Years</p>
</a>
</div>
</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>