forked from jaiyankargupta/OCD-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoption.html
22 lines (21 loc) · 818 Bytes
/
option.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Field of Interest Selection</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="popup" class="popup">
<div class="popup-content">
<span class="close">×</span>
<h2>Select Your Field of Interest</h2>
<button class="option" onclick="selectOption('DSA')">Data Structures and Algorithms (DSA)</button>
<button class="option" onclick="selectOption('CP')">Competitive Programming (CP)</button>
<button class="option" onclick="selectOption('JavaScript')">30 Days of JavaScript</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>