-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (101 loc) · 3.25 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
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 lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<section>
<div class="mobile-template">
<div class="content-mobile">
<section class="mobile-title">
<span>9:41</span>
<div class="icon">
<span><i class="fa-solid fa-signal"></i></span>
<span><i class="fa-solid fa-wifi"></i></span>
<span><i class="fa-solid fa-battery-full"></i></span>
</div>
</section>
<br>
<section class="text-header">
<h2>March 9, 2020</h2>
<h5>5 incomplete, 5 completed</h5>
<hr>
</section>
<section class="incomplete">
<h3>incomplete</h3>
<div class="check-list">
<input type="checkbox">
<div class="text-incomplate">
<p>Upload 1099-R to TurboTax</p>
<span>💰 Finance</span>
</div>
</div>
<div class="check-list">
<input type="checkbox">
<div class="text-incomplate">
<p>Submit 2019 max TruboTax</p>
<span>💰 Finance</span>
</div>
</div>
<div class="check-list">
<input type="checkbox">
<div class="text-incomplate">
<p>Print parking passes</p>
<span>💞 Wedding</span>
</div>
</div>
<div class="check-list">
<input type="checkbox">
<div class="text-incomplate">
<p>Sign contract, send back</p>
<span>🖥️ Freelance</span>
</div>
</div>
<div class="check-list">
<input type="checkbox">
<div class="text-incomplate">
<p>Hand sanitizer</p>
<span>🛒 Shopping List</span>
</div>
</div>
</section>
<section class="complete">
<h3>complete</h3>
<div class="check-list">
<input type="checkbox" checked>
<div class="text-complate">
<p>Check on FedEx Order</p>
</div>
</div>
<div class="check-list">
<input type="checkbox" checked>
<div class="text-complate">
<p>Look at new plugins</p>
</div>
</div>
<div class="check-list">
<input type="checkbox" checked>
<div class="text-complate">
<p>Respond to catering company</p>
</div>
</div>
<div class="check-list">
<input type="checkbox" checked>
<div class="text-complate">
<p>Reschedule morning coffee</p>
</div>
</div>
</section>
<button class="btn"><span>+</span></button>
</div>
<img src="images/—Pngtree—mobile phone png smartphone camera_6067590.png">
</div>
</section>
<script src="app.js"></script>
</body>
</html>