-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (45 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>To Do List</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<html>
<head>
<title>To Do List</title>
<link rel="stylesheet" href="css/styles.css" />
<link rel="shortcut icon" type="image/png" href="assests/favicon.png">
</head>
<body>
<div id="list_section">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poiret+One&display=swap" rel="stylesheet">
<h1 id="header">To-do list</h1>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap" rel="stylesheet">
<h3 id="tagline">When you are done with the task, simply click on it and it'll vanish!</h3>
<ul>
<li class="item">Example Task</li>
</ul>
<div id="newItemButton"><button href="#">new item</button></div>
<form id="newItemForm">
<input type="text" id="itemField" placeholder="New Task" class="app-form-control">
<br>
<input type="submit" id="add" value="add New Task" >
<br>
<button href="index.html" class="pop_out" onclick="window.open('index.html',
'newwindow',
'width=400,height=400');
return false;">Pop Out!</button>
</form>
</div>
<script src="https://code.jquery.com/jquery-1.12.3.js" integrity="sha256-1XMpEtA4eKXNNpXcJ1pmMPs8JV+nwLdEqwiJeCQEkyc=" crossorigin="anonymous"></script>
<script src="js/your_js_file.js"></script>
</body>
</html>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js'></script><script src="./script.js"></script>
</body>
</html>