-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbca.html
More file actions
105 lines (91 loc) · 4.44 KB
/
bca.html
File metadata and controls
105 lines (91 loc) · 4.44 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BCA 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 Navigation -->
<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>
<!-- Breadcrumb -->
<div class="breadcrumb">
<div class="container">
<a href="index.html">Home</a> / <a href="college.html">College</a> / <span>BCA</span>
</div>
</div>
<section class="content-section">
<div class="container">
<h1 class="page-title">BCA Notes</h1>
<p class="page-description">Select a subject to access comprehensive notes and study materials</p>
<div class="cards-grid">
<a href="/subjects/college/bca/sem1/sem1_bca.html" class="content-card">
<div class="card-icon">💻</div>
<h3>Semester 1</h3>
<p>Office automation | Communicative English | Digital electronics and computer organization | Cyber security | Web designing | Computer fundamentals </p>
</a>
<a href="/subjects/college/bca/sem2/sem2_bca.html" class="content-card">
<div class="card-icon">🌐</div>
<h3>Semester 2</h3>
<p>Programming in C | Operating System | DBMS | Animation and Design | E-Governance | Environment & Ecological Sustainability</p>
</a>
<a href="/subjects/college/bca/sem3/sem3_bca.html" class="content-card">
<div class="card-icon">🤖</div>
<h3>Semester 3</h3>
<p>Artificial Intelligence | Data communication and Networks | Object oriented programming Java | Data structure using C | Blockchain Technology | Numerical and statistical methods</p>
</a>
<a href="/subjects/college/bca/sem4/sem4_bca.html" class="content-card">
<div class="card-icon">⚙️</div>
<h3>Semester 4</h3>
<p>Python Programming | .Net Framework & C# | Basics of Design & Analysis of Algorithms | Data Mining | IOT & Technology | E Commerce | Enterprise Resource Planning</p>
</a>
<a href="/commingsoon.html" class="content-card">
<div class="card-icon">🧠</div>
<h3>Semester 5</h3>
<p> Mobile Application Development | Server Side Programming Using PHP | Software Engineering | Biometric Security | Blockchain Technology | Storage Area Network | Machine Learning | Neural Network | Data Analytics</p>
</a>
<a href="/commingsoon.html" class="content-card">
<div class="card-icon">🚀</div>
<h3>Semester 6</h3>
<p>Advance Computer Technologies</p>
</a>
</div>
</div>
</section>
<!-- Footer -->
<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>
<!-- Back to Top Button -->
<button id="backToTop" class="back-to-top">↑</button>
<!-- JavaScript -->
<script src="assets/js/main.js"></script>
</body>
</html>