-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.html
More file actions
102 lines (87 loc) · 2.51 KB
/
Copy pathMain.html
File metadata and controls
102 lines (87 loc) · 2.51 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
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<title>To-Do-List</title>
<link rel="icon" type="image/png" href="Images/Head.png">
</head>
<body>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="Styles.css">
<div class="container">
<div class="row row-mvdown">
<div class="col-md-4">
</div>
<div class="col-md-4 colmod">
<a href="#"><img src="Images/Click3.png" alt="Image not found" height="200" width="60%" class="Head"></img></a>
</div>
<div class="col-md-4">
</div>
</div>
<hr>
<div class="row roback">
<div class="col-md-10">
</div>
<div class="col-md-2">
<div class="btn"><a href="#"><strong>SignUp</strong></a></div>
<div class="btn"><strong>LogIn</strong></div>
<!--
<form>
<ul class="ul-pop">
<li>Id:<input type="text" class="usrname"></input></li>
<li>Password:<input type="password" class="pass"></input></li>
</ul>
</form>
-->
</div>
</div>
<div class="row">
<div class="col-md-3 menspc">
<ul class="menu">
<li><strong>MENU</strong></li>
<li>Home</li>
</ul>
</div>
<div class="col-md-8 Content">
<div class="row rowalign">
<div class="col-md-10">
<h1 id="align">Enter Tasks:</h1>
</div>
<div class="col-md-2">
<div class="tstamp">
<div id="create"></div>
<div id="delete">
<button type="button" onclick="tstamp()">TimeStamp</button>
</div>
</div>
</div>
</div>
<input type="text" class="inp" placeholder="Task"></input>
<button type="button" class="sub" onclick="createTask();Reset();"><span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span></button>
<br>
<br>
<br>
<div id="tasks">
<div class="task">
<div class="col-md-2">
→
</div>
<div class="col-md-7">
First Task
</div>
<div class="col-md-3">
<button class="tick" type="button">✔</button>
<button class="del-but" type="button">✗</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script type="text/javascript" src="Script.js"></script>
</body>
</html>