|
| 1 | +<html lang="en"> |
| 2 | + <head> |
| 3 | + <meta charset="UTF-8" /> |
| 4 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 5 | + <link rel="stylesheet" href="style.css" /> |
| 6 | + <link rel="preconnect" href="https://fonts.googleapis.com" /> |
| 7 | + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> |
| 8 | + <link |
| 9 | + href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap" |
| 10 | + rel="stylesheet" |
| 11 | + /> |
| 12 | + <title>Card</title> |
| 13 | + </head> |
| 14 | + <body> |
| 15 | + <h1 class="title">SSOC'23 Frequently Asked Questions</h1> |
| 16 | + <div class="container"> |
| 17 | + <div class="card" onclick="toggleAnswer1()"> |
| 18 | + <div class="question-title">What is open Source Development ?</div> |
| 19 | + <div class="answer" id="answer1"> |
| 20 | + A software for which the original source code is made freely available |
| 21 | + and may be redistributed and modified according to the requirement of |
| 22 | + the user. |
| 23 | + </div> |
| 24 | + </div> |
| 25 | + <div class="card" onclick="toggleAnswer2()"> |
| 26 | + <div class="question-title">Any age limit for participation?</div> |
| 27 | + <div class="answer" id="answer2">No, it is open for all.</div> |
| 28 | + </div> |
| 29 | + <div class="card" onclick="toggleAnswer3()"> |
| 30 | + <div class="question-title">Is there any registration fees?</div> |
| 31 | + <div class="answer" id="answer3">There is no participation fee.</div> |
| 32 | + </div> |
| 33 | + <div class="card" onclick="toggleAnswer4()"> |
| 34 | + <div class="question-title">What will be the prices and perks?</div> |
| 35 | + <div class="answer" id="answer4"> |
| 36 | + All the participants with successful participation will get digital |
| 37 | + certificates and some cool swags. |
| 38 | + </div> |
| 39 | + </div> |
| 40 | + <div class="card" onclick="toggleAnswer5()"> |
| 41 | + <div class="question-title">Who all can participate?</div> |
| 42 | + <div class="answer" id="answer5"> |
| 43 | + No matter if you are a beginner or an expert , SSOC is open for |
| 44 | + everyone who has a zeal to learn new things and achieve heights. |
| 45 | + </div> |
| 46 | + </div> |
| 47 | + <div class="card" onclick="toggleAnswer6()"> |
| 48 | + <div class="question-title"> |
| 49 | + Can I participate in SSOC both as a participant and mentor? |
| 50 | + </div> |
| 51 | + <div class="answer" id="answer6"> |
| 52 | + You can participate either as a mentor or as a participant but not as |
| 53 | + both. |
| 54 | + </div> |
| 55 | + </div> |
| 56 | + </div> |
| 57 | + <script src="index.js"></script> |
| 58 | + </body> |
| 59 | +</html> |
0 commit comments