-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (60 loc) · 2.84 KB
/
index.html
File metadata and controls
66 lines (60 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0">
<!--FontAwesome CDN-->
<link href="https://fonts.googleapis.com/css?family=Inconsolata|Pacifico" rel="stylesheet">
<!-- Materialize Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.99.0/css/materialize.min.css">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<section class="container">
<div class="row">
<div class="col m12 s12">
<div class="title center-align"><span id="isotype"><img src="assets/img/1.png" alt="logo" id="logo"></span>ToDoApp</div>
<div class="work center-align">MAKE IT WORK</div>
<div class="divider"></div>
</div>
</div>
<div class="row" id="info">
<div class="col m12 s12">
<div class="row" id="lateral">
<div class="row">
<div class="col s12 m10" id="wrap">
<div class="card">
<div class="card-image">
<img src="assets/img/bg1.jpg" height="150">
<span class="card-title" id="wip">work in progress!</span>
</div>
<ul id="listado"></ul>
</div>
</div>
</div>
</div>
<div class="row" id="list">
<div class="col m8 push-m4 s12">
<div>
<div>
<p>With ToDoApp you can get all your tasks in one place, follow your work in progress, add more stuff to-do and remove what's been done.</p>
</div>
<form class="add-items">
<input type="text" class="form-control" id="to-do" placeholder="add a task!">
<button class="add-items btn" type="submit">add</button>
</form>
<div class="divider" id="divider"></div>
<div class="center-align">
<h3>work done!</h3>
</div>
<ul id="work-done"></ul>
</div>
</div>
</div>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="assets/js/main.js"></script>
</body>
</html>