-
Notifications
You must be signed in to change notification settings - Fork 5
/
faq.html
115 lines (111 loc) · 6.32 KB
/
faq.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
<html>
<head>
<title>Frequently Asked Questions</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="faq.css" />
</head>
<body>
<nav class="sticky">
<input type="checkbox" id="check" />
<label for="check" class="checkbtn">
<i class="fa fa-bars"></i>
</label>
<div>
<a href="/"><img src="assets/pesitieee.png" class="logo" /></a>
<ul>
<li class="faq-navbar"><a href="./index.html">Home</a></li>
<li class="faq-navbar"><a href="./events.html">Events</a></li>
<li class="faq-navbar">
<a href="./execom.html">Team</a>
</li>
<li class="faq-navbar"><a href="./faq.html" style="color: white; font-weight: bold;">FAQ's</a></li>
</ul>
</div>
</nav>
<div class="faq-bg">
<h1 class="faq-header">Frequently Asked Questions</h1>
</div>
<section class="faq-section">
<div class="faq-container">
<div class="tabs">
<div class="tab">
<input type="checkbox" id="chck1">
<label class="tab-label" for="chck1">What is IEEE?</label>
<div class="tab-content">
IEEE is the world’s largest technical professional organization dedicated to advancing technology for the benefit of humanity.
The Institute of Electrical and Electronics Engineers is a professional association for electronic engineering and electrical engineering with its
corporate office in New York City and its operations center in Piscataway, New Jersey. It was formed in 1963 from the amalgamation of the
American Institute of Electrical Engineers and the Institute of Radio Engineers.
</div>
</div>
<div class="tab">
<input type="checkbox" id="chck2">
<label class="tab-label" for="chck2">Should I get Membership?</label>
<div class="tab-content">
An IEEE membership helps you build a platform for success.
It delivers access to the industry's most essential technical information, provides both local and global networking
opportunities, offers career development tools, and gives discounts on conference registrations and insurance programs, as well as many other exclusive member benefits.
IEEE offers its members the right tools and resources at every career stage so members can stay current in their chosen technology profession, connect with peers, and invest in their future.
</div>
</div>
<div class="tab">
<input type="checkbox" id="chck3">
<label class="tab-label" for="chck3">How much is the membership?</label>
<div class="tab-content">
There's no better time to take the IEEE membership as dues are now at an all time low with 50% off,
with membership benefits through the end of 2021.
</div>
</div>
<div class="tab">
<input type="checkbox" id="chck4">
<label class="tab-label" for="chck4">What is IEEE PESIT SB?</label>
<div class="tab-content">
IEEE PESIT Student Branch (IEEE PESIT SB) is the IEEE chapter on campus which manages the other IEEE societies
as well as conducts webinars, events and internal activities along with our annual flagship event Kalpana.
</div>
</div>
<div class="tab">
<input type="checkbox" id="chck5">
<label class="tab-label" for="chck5">How can I join IEEE SB?</label>
<div class="tab-content">
We conduct recruitment drives periodically to onboard the organising committee (OC) and volunteers.
Follow us on our social media pages below to stay updated about the same.<br>
<li><a href="https://www.linkedin.com/company/ieee-pesit-south-campus-student-branch/mycompany/">LinkedIn</a></li>
<li><a href="https://instagram.com/ieeepesit?utm_medium=copy_link">Instagram</a></li>
</div>
</div>
<div class="tab">
<input type="checkbox" id="chck6">
<label class="tab-label" for="chck6">How many societies and affinity groups are there on campus?</label>
<div class="tab-content">
Societies: IEEE Student Branch (IEEE SB), IEEE Robotics and Automation (IEEE RAS), IEEE Photonics and Solid State joint chapter (IEEE SSCS & Photonics).
<br>Affinity Groups: Women in Engineering (WiE), SIGHT
</div>
</div>
<div class="tab">
<input type="checkbox" id="chck7">
<label class="tab-label" for="chck7">How to set up a new society?</label>
<div class="tab-content">
Build and plan an IEEE approved society or affinity group and contact the IEEE SB EXECOM.
</div>
</div>
<div class="tab">
<input type="checkbox" id="chck8">
<label class="tab-label" for="chck8">How to contact us?</label>
<div class="tab-content">
Mail us at <a href="[email protected]">[email protected]</a> or
reach out to us on our social media pages given below:<br>
<li><a href="https://www.linkedin.com/company/ieee-pesit-south-campus-student-branch/mycompany/">LinkedIn</a></li>
<li><a href="https://instagram.com/ieeepesit?utm_medium=copy_link">Instagram</a></li>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="faq.js"></script>
</body>
</html>