-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbba.html
More file actions
66 lines (62 loc) · 3.47 KB
/
Copy pathbba.html
File metadata and controls
66 lines (62 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BBA 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> / <a href="college.html">College</a> / <span>BBA</span>
</div>
</div>
<section class="content-section">
<div class="container">
<h1 class="page-title">BBA Notes</h1>
<p class="page-description">Select your semester to access comprehensive Business Administration notes</p>
<div class="cards-grid">
<a href="/subjects/college/bba/sem1/sem1_bba.html" class="content-card"><div class="card-icon">1️⃣</div><h3>Semester 1</h3><p>Principles of Mgmt | Communication | Accounting | Microeconomics | Maths</p></a>
<a href="/subjects/college/bba/sem2/sem2_bba.html" class="content-card"><div class="card-icon">2️⃣</div><h3>Semester 2</h3><p>Org Behavior | Business Env | Macroeconomics | Cost Accounting | Statistics</p></a>
<a href="/subjects/college/bba/sem3/sem3_bba.html" class="content-card"><div class="card-icon">3️⃣</div><h3>Semester 3</h3><p>Marketing | Finance | HRM | Business Law | Mgmt Accounting</p></a>
<a href="/subjects/college/bba/sem4/sem4_bba.html" class="content-card"><div class="card-icon">4️⃣</div><h3>Semester 4</h3><p>Operations | Consumer Behavior | Ethics | Company Law | Entrepreneurship</p></a>
<a href="/subjects/college/bba/sem5/sem5_bba.html" class="content-card"><div class="card-icon">5️⃣</div><h3>Semester 5</h3><p>Strategic Mgmt | Intl Business | E-Commerce | Research | Investment</p></a>
<a href="/subjects/college/bba/sem6/sem6_bba.html" class="content-card"><div class="card-icon">6️⃣</div><h3>Semester 6</h3><p>Retail Mgmt | Project Mgmt | Digital Marketing | Taxation Law</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>