-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 810 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 810 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">
<header>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>KeepCopyProject</title>
<link rel="icon" type="image/x-icon" href="./img/favicon.ico" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="font.css" />
<script src="script.js"></script>
</header>
<body onload="renderPage()">
<main>
<header>
<img id="notepadImg" src="./img/notepad.png" alt="Notepad" />
</header>
<div id="newNote" class="newNote"></div>
<div id="cardContainer" class="oneOfThreeDivs cardContainer"></div>
<div id="archiveDiv" class="oneOfThreeDivs">Archive</div>
<div id="trashCan" class="oneOfThreeDivs"></div>
</main>
</body>
</html>