-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (71 loc) · 2.95 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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>Alan Becker Capuya | Path</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<span>
<input type="radio" name="mode" value="education" onclick="changeMode(window.list)" checked>
📖
</span>
<h1>Alan Becker Capuya | Lists</h1>
<span>
<input type="radio" name="mode" value="library" onclick="changeMode(window.list)">
📚
</span>
</header>
<div id="Insert">
<input type="text" class="myInput" id="Title" placeholder="Title" title="Type in a title">
<input type="url" class="myInput" id="Url" placeholder="Title URL" title="Type in a URL for title">
<input type="text" class="myInput" id="Description" placeholder="Description" title="Type in a description" library>
<input type="text" class="myInput" id="Tutor" placeholder="Tutor" title="Type in a tutor" education>
<input type="url" class="myInput" id="TutorUrl" placeholder="Tutor URL" title="Type in a URL for tutor" education>
<input type="text" class="myInput" id="Category" placeholder="Category" title="Type in a category">
<div class="myInput" id="Type" education>
<input type="checkbox" name="type" value="💻">
<span>💻</span>
<input type="checkbox" name="type" value="📻">
<span>📻</span>
<input type="checkbox" name="type" value="📘">
<span>📘</span>
<input type="checkbox" name="type" value="🎞">
<span>🎞</sp>
</div>
<div class="myInput" id="Price" education>
<input type="checkbox" name="price" value="🆓">
<span>🆓</span>
<input type="checkbox" name="price" value="💲">
<span>💲</span>
</div>
<div class="myInput" id="Status" education>
<input type="checkbox" name="status" value="✔️">
<span>✔️</span>
<input type="checkbox" name="status" value="🔵">
<span>🔵</span>
<input type="checkbox" name="status" value="❌">
<span>❌</span>
</div>
<span onclick="filtering()" id="Search"><i class="fas fa-search"></i></span>
<span onclick="newElement()" id="Add"><i class="fas fa-plus-circle"></i></span>
</div>
<table id="myTable">
<tr class="header">
<th>Title</th>
<th library>Description</th>
<th education>Tutor</th>
<th>Category</th>
<th style="width:5%;" education>Type</th>
<th style="width:5%;" education>Price</th>
<th style="width:5%;" education>Status</th>
<th style="width:1%;"></th>
</tr>
</table>
</body>
<script src="script.js"></script>
</html>