forked from livecodingonline/jQuery-Assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (57 loc) · 2.08 KB
/
index.html
File metadata and controls
57 lines (57 loc) · 2.08 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
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link href="styles.css" rel="stylesheet" />
<title>LiveCoding jQuery Assignment</title>
</head>
<body>
<div id="wrapper" class="shadow-lg p-3 mb-5 bg-white rounded">
<header>
<div id="page-banner">
<h1 class="title">LiveCoding Topics</h1>
<p>Topics for coders</p>
<form id="search-topics">
<input type="text" placeholder="Search topics..." />
</form>
</div>
</header>
<div id="topic-list">
<h2 class="title">Topics to Cover</h2>
<ul class="list-group" id="lessonList">
<li class="list-group-item list-group-item-info">
<span class="name">JavaScript Essentials 1</span>
<span class="delete">delete</span>
</li>
<li class="list-group-item list-group-item-light">
<span class="name">JavaScript Essentials 2</span>
<span class="delete">delete</span>
</li>
<li class="list-group-item list-group-item-info">
<span class="name">jQuery Essentials</span>
<span class="delete">delete</span>
</li>
<li class="list-group-item list-group-item-light">
<span class="name">React Essentials</span>
<span class="delete">delete</span>
</li>
</ul>
</div>
<form id="add-topic">
<input type="checkbox" id="hide" />
<label for="hide"> Hide all topics </label>
<input id="addListItem" type="text" placeholder="Add a topic..." />
<button>Add</button>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.js"></script>
<script src="app.js"></script>
</body>
</html>