-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditList.html
More file actions
36 lines (36 loc) · 1.4 KB
/
Copy patheditList.html
File metadata and controls
36 lines (36 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Edit List</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style_edit_list.css">
<script src="https://kit.fontawesome.com/cb5b9c29df.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="main-container">
<div class="main-heading">
<hr class="heading-line-decoration">
<h1 class='heading-text'>Trip to Paris</h1>
<hr class="heading-line-decoration">
</div>
<div class="back-container">
<a href="index.html" class="index"><i class="fas fa-arrow-circle-left fa-2x"></i></a>
<h2 class="back-text"> Back</h2>
</div>
<div class="list-box">
<div class="list-card">
<h2 class="card-heading">Trip to Paris</h2>
<hr class="card-heading-line">
<h3 class="crossed-task">Completed Task</h3>
<h3 class="pending-task">
<input type="checkbox">
<label for="">Pending Task</label>
</h3>
<a href="addItem.html"><i class="fas fa-plus-circle fa-lg"></i></a>
</div>
</div>
</div>
</body>
</html>