From 6f21f5e21aac3625ecb520f299acf21432c4e6ed Mon Sep 17 00:00:00 2001 From: Faustino Kialungila Date: Wed, 18 Jan 2017 11:04:53 +0100 Subject: [PATCH 1/2] all --- fausto.css | 15 +++++++++++++++ htmlfausto.html | 17 +++++++++++++++++ jsfausto.js | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 64 insertions(+) create mode 100644 fausto.css create mode 100644 htmlfausto.html create mode 100644 jsfausto.js diff --git a/fausto.css b/fausto.css new file mode 100644 index 0000000..34928f9 --- /dev/null +++ b/fausto.css @@ -0,0 +1,15 @@ +div { + display: flex; + justify-content: center; +} +li { + list-style: none; +} +ul { + border: 2px solid rgb(81, 180, 164); + padding: 2%; + width: 400px; +} +.hidden { + visibility: hidden; +} diff --git a/htmlfausto.html b/htmlfausto.html new file mode 100644 index 0000000..11a825d --- /dev/null +++ b/htmlfausto.html @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + diff --git a/jsfausto.js b/jsfausto.js new file mode 100644 index 0000000..91ce63f --- /dev/null +++ b/jsfausto.js @@ -0,0 +1,32 @@ +var books = [{ + title: 'CSS: The Definitive Guide', + author: 'Eric Meyer', + link: 'http://shop.oreilly.com/product/0636920012726.do', + type: 'css' +}, { + title: 'CSS Development with CSS3', + author: 'Zachary Kingston', + link: 'http://shop.oreilly.com/product/0636920057970.do', + type: 'css' +}, { + title: 'You Don\'t Know JS: Up & Going', + author: 'Kyle Simpson', + link: 'http://shop.oreilly.com/product/0636920039303.do', + type: 'js' +}, { + title: 'Programming JavaScript Applications', + author: 'Eric Elliott', + link: 'http://shop.oreilly.com/product/0636920033141.do', + type: 'js' +}, { + title: 'Modern JavaScript', + author: 'unknown', + link: 'http://www.oreilly.com/web-platform/free/modern-javascript.csp', + type: 'js' +}]; + + + +for (var i = 0; i < books.length; i++) { + document.write("
" + "" + "
"); +} From c57e51b21c936d38709b8d9f40ecfd2a7bbf0c25 Mon Sep 17 00:00:00 2001 From: Sami Date: Wed, 18 Jan 2017 11:39:35 +0100 Subject: [PATCH 2/2] salut --- index.html | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ index.js | 0 2 files changed, 71 insertions(+) create mode 100644 index.html create mode 100644 index.js diff --git a/index.html b/index.html new file mode 100644 index 0000000..56ae329 --- /dev/null +++ b/index.html @@ -0,0 +1,71 @@ + + + + + + + + + Exo js + + + + + +
+
    +
  • Title: CSS: The Definitive Guide

  • +
  • Author: Eric Meyer
  • +
  • Link: 'http://shop.oreilly.com/product/0636920012726.do'
  • +
  • Type: 'css'
  • +
+
+ +
+
    + +
  • Title: 'CSS Development with CSS3'
  • +
  • Author: 'Zachary Kingston'
  • +
  • Link: 'http://shop.oreilly.com/product/0636920057970.do'
  • +
  • Type: 'css'
  • + +
+ +
+
    + +
  • Title: 'CSS Development with CSS3'
  • +
  • Author: 'Zachary Kingston'
  • +
  • Link: 'http://shop.oreilly.com/product/0636920057970.do'
  • +
  • Type: 'css'
  • + +
+ + +
+
    + +
  • Title:'You Don\'t Know JS: Up & Going'
  • +
  • Author: 'Kyle Simpson'
  • +
  • Link: 'http://shop.oreilly.com/product/0636920039303.do'
  • +
  • Type: 'css'
  • + +
+ + + +
+
    + +
  • Title: 'CSS Development with CSS3'
  • +
  • Author: 'Zachary Kingston'
  • +
  • Link: 'http://shop.oreilly.com/product/0636920057970.do'
  • +
  • Type: 'css'
  • + +
+ + + + diff --git a/index.js b/index.js new file mode 100644 index 0000000..e69de29