-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<title>My Tasks Board</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<link href="newcss.css" rel="stylesheet" type="text/css"/>
</head>
<body><div id="count"></div>
<div class='container-fluid'>
<header><img class="img-responsive" src="title.png" alt="my task board" /></header>
<form>
<label>
<textarea rows="2" placeholder="Enter Your Task Here" name="mytasks" minlength="4" required/ ></textarea>
</label>
<label>
<span>Date</span>
<input type="date" min=2017-01-08 placeholder="Date" name="date" required/ >
</label>
<input class="submit" type="submit" value="Add Note"/>
</form>
<div class='container-fluid2'>
<div class="note_container"></div>
</div>
</div>
<script src="newjavascript.js" type="text/javascript"></script>
</body>
</html>