generated from projeto-de-algoritmos/RepositorioTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindexc.html
More file actions
35 lines (28 loc) · 706 Bytes
/
indexc.html
File metadata and controls
35 lines (28 loc) · 706 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>OlympicSchedule</title>
<style>
/* Estilo para remover o marcador de lista antes dos checkboxes */
ul {
list-style-type: none;
}
</style>
</head>
<body>
<div id="categoryListDiv">
<h1>Modalidades</h1>
<ul id="categoryList">
<!-- Aqui a lista será renderizada -->
</ul>
</div>
<button id="showSelectedButton">Montar roteiro</button>
<div id="selectedCategoriesDiv">
<h1>Seu roteiro</h1>
<ul id="selectedCategories">
<!-- Aqui a lista será renderizada -->
</ul>
</div>
<script src="script.js"></script>
</body>
</html>