Skip to content

Commit 30b7e35

Browse files
committed
Add index.html, styles.css, modern-normalize.min.css, scripts.js, Eslint, gitignore and JSON files, update README.md
1 parent 3ecb302 commit 30b7e35

File tree

9 files changed

+1649
-2
lines changed

9 files changed

+1649
-2
lines changed

.eslintrc.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es2021: true,
5+
},
6+
extends: [
7+
'airbnb-base',
8+
],
9+
parserOptions: {
10+
ecmaVersion: 12,
11+
},
12+
rules: {
13+
},
14+
};

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
# library
2-
A small Library app, created with HTML, CSS, JS and stored in localStorage or in Firebase (not chosen yet)
1+
# The Odin Project JavaScript
2+
## Project: Library
3+
A small Library app, created with **HTML**, **CSS** and **JavaScript**. The data is stored in **localStorage**.
4+
5+
🔗 **Live preview** of the project is [here](https://mooniidev.github.io/library/).
6+

css/modern-normalize.min.css

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

css/styles.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
text-align: center;
3+
}

index.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link type="text/css" rel="stylesheet" href="css/modern-normalize.min.css">
8+
<link type="text/css" rel="stylesheet" href="css/styles.css">
9+
<title>📚 Library</title>
10+
</head>
11+
12+
<body>
13+
<header>
14+
<h1>Library</h1>
15+
</header>
16+
17+
<main id="booksCards">
18+
19+
</main>
20+
21+
<footer>
22+
<p> ☽ Crafted by
23+
<a href="https://github.com/mooniiDev" target="_blank">mooniiDev</a> |
24+
<a href="https://github.com/mooniiDev/library" target="_blank">Source</a>
25+
</p>
26+
</footer>
27+
28+
<script type="text/javascript" src="scripts.js"></script>
29+
</body>
30+
31+
</html>

0 commit comments

Comments
 (0)