From 45de87aba1dd29cf6539ad48e64b98f714f8c82a Mon Sep 17 00:00:00 2001 From: Gambadeur Date: Wed, 18 Jan 2017 10:59:45 +0100 Subject: [PATCH 1/3] premier commit --- index.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..02bb309 --- /dev/null +++ b/index.html @@ -0,0 +1,14 @@ + + + + + Button Books + + + + + + + From 77ede446c0bab10ae61a61947d412165cde11e49 Mon Sep 17 00:00:00 2001 From: Gambadeur Date: Wed, 18 Jan 2017 11:40:56 +0100 Subject: [PATCH 2/3] creation fichier js --- index.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 index.js diff --git a/index.js b/index.js new file mode 100644 index 0000000..329984b --- /dev/null +++ b/index.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' +} +] ; From e7d2ed5041fb8c06678bddc1d0899e61f14790e1 Mon Sep 17 00:00:00 2001 From: Gambadeur Date: Wed, 18 Jan 2017 11:41:40 +0100 Subject: [PATCH 3/3] ajout du link js --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 02bb309..3d6601a 100644 --- a/index.html +++ b/index.html @@ -7,6 +7,7 @@ +