-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathabout.html
83 lines (73 loc) · 3.43 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YearBook for MCA</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./img/nitjsr-logo.png" type="image/x-icon">
</head>
<body>
<div class="wrapper">
<nav class="nav-bar">
<a href="#" class="toggle_button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<ul class="links" style="list-style-type: none;">
<li><a href="./index.html">Home</a></li>
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Batches
</button>
<div id="myDropdown" class="dropdown-content">
<a href="./batch1.html">Batch 2021</a>
<a href="./batch2.html">Batch 2022</a>
<a href="./batch3.html">Batch 2023</a>
</div>
</div>
<li><a href="./about.html">About</a></li>
<li><a href="./FAQs.html">FAQs</a></li>
<li><a href="./why.html">Why Yearbook</a></li>
</ul>
</nav>
<div id="aboutpara">
<main>
<section class="MCA">
<h2>About the MCA Program</h2>
<p>The Master of Computer Applications (MCA) program is designed to provide a strong foundation in computer applications and problem-solving skills. It offers a comprehensive understanding of various aspects of computer science and its applications in the real world.</p>
<p>Throughout this program, students delve into diverse subjects including software development, algorithms, data structures, database management, web technologies, and more.</p>
</section>
<section id="objective">
<h2>Objectives</h2>
<ul >
<li>Equip students with advanced knowledge of computer applications.</li>
<li>Develop analytical and problem-solving skills.</li>
<li>Prepare students to meet the demands of the IT industry.</li>
<li>Offer practical exposure through projects and internships.</li>
<li>Foster innovation and research in the field of computing.</li>
</ul>
</section>
<section id="opportunities">
<h2>Opportunities</h2>
<p>Graduates from the MCA program have a wide array of career opportunities. They can work as:</p>
<ul >
<li>Software Developers</li>
<li>System Analysts</li>
<li>Database Administrators</li>
<li>IT Consultants</li>
<li>Project Managers</li>
</ul>
</section>
</main>
</div>
</div>
<footer id="page-footer">
<a href="https://github.com/BidyasagarAnupam/YearBook" id="gitlink">An Open Source Project.</a>
<p>Developed By Bidyasagar Mohapatra | Aspiring Full Stack Web Developer | MCA'25</p>
<p>© 2023 - All Rights Reserved.</p>
</footer>
<script src="search.js"></script>
<script src="index.js"></script>
</body>
</html>