-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (142 loc) · 5.41 KB
/
index.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>
FAQ
</title>
<link rel="stylesheet" href="faq.css" />
<script src="faq.js" defer></script>
</head>
<body>
<h2 class="FAQ-Heading">Frequently Asked Questions (FAQs)</h2>
<div class="accordion">
<div class="row">
<div class="column col1">
<!--question1-->
<div class="accordion-item">
<div class="accordion-item-header">
Who discovered India?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
The discovery of the sea route to India is via the Atlantic Ocean. It was undertaken under the command of Portuguese
explorer Vasco da Gama during the reign of King Manuel I in 1497 -1499.
</div>
</div>
</div>
<!--question2-->
<div class="accordion-item">
<div class="accordion-item-header">
When did India got independence?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
India gained independence on 15th August 1947 at midnight.
</div>
</div>
</div>
<!--question3-->
<div class="accordion-item">
<div class="accordion-item-header">
Who wrote Indian constitution?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
The original constitution of India was handwritten by Prem Behari Narain Raizada.
Though we all know that B.R. Ambedkar was the architect of the constitution, little is known about the man who penned the
constitution in his own impeccable calligraphy. Prem Behari Narain Raizada (Saxena) of Delhi wrote the entire constitution in a
flowing italic style in the best calligraphic tradition of our country.
</div>
</div>
</div>
<!--question4-->
<div class="accordion-item">
<div class="accordion-item-header">
Who is the first prime minister of India?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
The first was Jawaharlal Nehru of the Indian National Congress party, who was sworn in on 15 August 1947, when India gained
independence from the British Raj. Serving until his death in May 1964, Nehru remains India's longest-serving prime minister.
</div>
</div>
</div>
<!--question5-->
<div class="accordion-item">
<div class="accordion-item-header">
Who is the first president of India?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
Rajendra Prasad was the first President of India, who had worked as president for two terms.
</div>
</div>
</div>
</div>
<div class="column col2">
<!--question6-->
<div class="accordion-item">
<div class="accordion-item-header">
Who is the present vice president of India?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
Venkaiah Naidu is the current Vice President of India.
</div>
</div>
</div>
<!--question7-->
<div class="accordion-item">
<div class="accordion-item-header">
Who wrote India's national anthem?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
India's national anthem “Jana Gana Mana Adhinayaka” was composed by Rabindranath Tagore on 11 December 1911 and was first
sung later in the month on 28th December at the Calcutta session of Congress.
</div>
</div>
</div>
<!--question8-->
<div class="accordion-item">
<div class="accordion-item-header">
Who wrote Vande Mataram ?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
Vande Mataram is a heavily sanskiritised Bengali poem written by Bankim Chandra Chatterjee in 1870s, which he included in
his 1882 Bengali novel Anandamath.
</div>
</div>
</div>
<!--question9-->
<div class="accordion-item">
<div class="accordion-item-header">
Who is Ashoka Chakravarthy?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
Ashoka was the third emperor of the Mauryan dynasty, grandson of its founder Chandragupta and son of the second emperor, Bindusara.
</div>
</div>
</div>
<!--question10-->
<div class="accordion-item">
<div class="accordion-item-header">
Who the name India origined?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
The name 'India' is derived from the River Indus, the valleys around which were the home of the early settlers.
The Aryan worshippers referred to the river Indus as the Sindhu.
The name 'Hindustan' combines Sindhu and Hindu and thus refers to the land of the Hindus.
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>