-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (25 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>[Web Name]</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" type="text/css" href="./ModalWindow/modal.css"/>
<link rel="stylesheet" type="text/css" href="./Dropdown/dropdown.css"/>
<link rel="stylesheet" type="text/css" href="./index.css"/>
<script type="application/javascript" src="./ModalWindow/modal.js"></script>
<script type="application/javascript" src="./Dropdown/dropdown.js"></script>
<script type="application/javascript" src="./index.js"></script>
</head>
<body>
<div id="page-container">
<div class="dropdowns">
<div id="my-choice-dropdown-1" class="my-dropdown"></div>
<div id="my-choice-dropdown-2" class="my-dropdown"></div>
<div id="my-choice-dropdown-3" class="my-dropdown"></div>
</div>
</div>
</body>
</html>