-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.html
More file actions
23 lines (23 loc) · 847 Bytes
/
edit.html
File metadata and controls
23 lines (23 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" type="text/css" href="./src/styles/reset.css" />
<link rel="stylesheet" type="text/css" href="./src/styles/editstyles.css" />
</head>
<body>
<h1 id="title"></h1>
<input id="edit-title" type="text" placeholder="Edit title" />
<input
id="edit-description"
type="text"
placeholder="Edit description" />
<button id="save-button" type="submit">Save task</button>
<div>
<img class="edit__img" src="src/assets/giphy.gif" alt="Gif Bob Esponja" />
</div>
<script src="/src/js/edit.js"></script>
</body>
</html>