Skip to content

Commit a61e326

Browse files
committed
Initial commit
0 parents  commit a61e326

File tree

10 files changed

+82
-0
lines changed

10 files changed

+82
-0
lines changed

.idea/.gitignore

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/Task1.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Title</title>
6+
<link rel="stylesheet" href="styles/general.css">
7+
</head>
8+
<body>
9+
<header>
10+
<h1>Task 1 | Notes app</h1>
11+
</header>
12+
<main>
13+
<table id="active-archive-table">
14+
15+
</table>
16+
<div>
17+
18+
</div>
19+
<table id="stats-table">
20+
21+
</table>
22+
</main>
23+
<script src="scripts/data.js"></script>
24+
<script src="scripts/HTMLBuilder.js"></script>
25+
<script src="scripts/functions.js"></script>
26+
<script src="scripts/form.js"></script>
27+
</body>
28+
</html>

scripts/CRUD.js

Whitespace-only changes.

scripts/HTMLBuilder.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
function buildForm(){
2+
3+
}

scripts/data.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
let notes = [
2+
{
3+
name: ,
4+
created: ,
5+
category: ,
6+
content: ,
7+
dates: ,
8+
archived:
9+
},
10+
]

scripts/form.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
createFrom();

scripts/functions.js

Whitespace-only changes.

styles/general.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
@import url(http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300ita‌​lic,400italic,500,500italic,700,700italic,900italic,900);
2+
3+
*{
4+
font-family: 'Roboto', sans-serif;
5+
margin: 0;
6+
padding: 0;
7+
}
8+
header, main{
9+
padding: 15px 60px;
10+
}
11+
header{
12+
text-align: center;
13+
color: ghostwhite;
14+
background-color: darkcyan;
15+
}

0 commit comments

Comments
 (0)