-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (42 loc) · 1.41 KB
/
index.html
File metadata and controls
56 lines (42 loc) · 1.41 KB
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
<!DOCTYPE html>
<html lang="en" style="background-color: #f5f5ed;">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo</title>
<link rel="stylesheet" href="main.css">
<script src="script.js" defer></script>
</head>
<!--
<div class="todo-element" data-indexInData = "" >
<input class="checkBoxTodo" type="checkbox">
<p class="TodoContent">todo</p>
</div>
-->
<body style="display: none;">
<!--new me new refactor -->
<main id="main">
<section class="section" id="basicsSec">
<h1 class="title-Sec">Basics</h1>
<div class="content-Sec">
<section id="basicsCon" class="contaner">
</section>
</div>
</section>
<section class="section" id="intermidiateSec">
<h1 class="title-Sec">Intermidiate</h1>
<div class="content-Sec">
<section id="intermidiateCon" class="contaner">
</section>
</div>
</section>
<section class="section" id="expertSec">
<h1 class="title-Sec">Expert</h1>
<div class="content-Sec">
<section id="expertCon" class="contaner">
</section>
</div>
</section>
</main>
</body>
</html>