-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathwhy.html
93 lines (79 loc) · 4.06 KB
/
why.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
84
85
86
87
88
89
90
91
92
93
<!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 id="main2">
<div class="faq-container">
<h1>Importance of Yearbook</h1>
<br>
<div id="faq-item">
<p><strong>Preserving Memories:</strong> A yearbook encapsulates the essence of a specific period, allowing individuals to reminisce and cherish these moments for years to come.</p>
</div>
<br>
<div id="faq-item" style="list-style-type: disc;">
<p><strong>Historical Record:</strong> They provide future generations with insights into the past, enabling them to understand the culture and values of the period.</p>
</div>
<br>
<div id="faq-item">
<p><strong>Reflection and Growth:</strong> Looking back at a yearbook enables individuals to reflect on their personal growth and changes, fostering a deeper understanding of their journey. </p>
</div>
<br>
<div id="faq-item">
<p><strong>Inspiration and Motivation:</strong> By highlighting success stories and memorable moments, yearbooks inspire current and future members to aim for their best and create their own legacies.</p>
</div>
<br>
<div id="faq-item">
<p><strong>Networking and Professional Growth:</strong> They serve as a platform for networking among alumni and can contribute to professional growth and opportunities.</p>
</div>
<br>
<div id="faq-item">
<p><strong>Capturing Culture and Traditions:</strong> Yearbooks encapsulate the cultural and traditional aspects of an institution, preserving customs and events that define its identity.
</p>
</div>
<br>
<div id="faq-item">
<p><strong>Documenting Achievements:</strong> It serves as a documentation of achievements, showcasing the growth and accomplishments of individuals and the institution.</p>
</div>
<br>
</div>
</main>
</div>
</div>
<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="index.js"></script>
</body>
</html>