-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewtab.html
More file actions
91 lines (71 loc) · 2.24 KB
/
newtab.html
File metadata and controls
91 lines (71 loc) · 2.24 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<script src="Task.js"></script>
<script src="ToDoList.js"></script>
<script src="myScript.js"></script>
<script src="colours.js"></script>
<script src="myScriptView.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Merriweather" rel="stylesheet" type="text/css">
<link href=" " >
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="UTF-8">
<title>New Tab</title>
</head>
<body>
<h1>do your work, ashley.</h1>
<div class="flexContainer">
<div id="monBox" class="zoom">
<h5 class="box">monday</h5>
<ul id="monUL">
</ul>
<form autocomplete="off">
<input type="text" id="monInput" placeholder=". . .">
<!--<span id = "monBut" class="addBtn">add</span>-->
</form>
</div>
<div id="tuesBox" class="zoom">
<h5 class="box">tuesday</h5>
<ul id="tuesUL">
</ul>
<form autocomplete="off">
<label for="name"></label>
<input type="text" id="tuesInput" placeholder=". . .">
<!--<span id = "tuesBut" class="addBtn">add</span>-->
</form>
</div>
<div id="wedBox" class="zoom">
<h5 class="box">wednesday</h5>
<ul id="wedUL">
</ul>
<form autocomplete="off">
<label for="name"></label>
<input type="text" id="wedInput" placeholder=". . .">
<!--<span id = "wedBut" class="addBtn">add</span>-->
</form>
</div>
<div id="thursBox" class="zoom">
<h5 class="box">thursday</h5>
<ul id="thursUL">
</ul>
<form autocomplete="off">
<label for="name"></label>
<input type="text" id="thursInput" placeholder=". . .">
<!--<span id = "thursBut" class="addBtn">add</span>-->
</form>
</div>
<div id="friBox" class="zoom">
<h5 class="box">friday</h5>
<ul id="friUL">
</ul>
<form autocomplete="off">
<label for="name"></label>
<input type="text" id="friInput" placeholder=". . .">
<!--<span id = "friBut" class="addBtn">add</span>-->
</form>
</div>
</div>
<script src="myScript.js"></script>
</body>
</html>