Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions fausto.css
Original file line number Diff line number Diff line change
@@ -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;
}
17 changes: 17 additions & 0 deletions htmlfausto.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<link rel="stylesheet" href="fausto.css" media="screen" title="no title">
<title></title>
</head>

<body>

<script src="jsfausto.js">
</script>

</body>

</html>
71 changes: 71 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="index.css" media="screen" title="no title">
</style>

</script>
<title>Exo js</title>
</head>


<body>

<div class="liste>">
<ul>
<li> <h4> Title: CSS: The Definitive Guide </h2> </li>
<li> Author: Eric Meyer </li>
<li> Link: 'http://shop.oreilly.com/product/0636920012726.do' </li>
<li> Type: 'css' </li>
</ul>
</div>

<div class="liste">
<ul>

<li>Title: 'CSS Development with CSS3'</li>
<li> Author: 'Zachary Kingston' </li>
<li> Link: 'http://shop.oreilly.com/product/0636920057970.do'</li>
<li>Type: 'css' </li>

</ul>

<div class="liste">
<ul>

<li>Title: 'CSS Development with CSS3'</li>
<li> Author: 'Zachary Kingston' </li>
<li> Link: 'http://shop.oreilly.com/product/0636920057970.do'</li>
<li>Type: 'css' </li>

</ul>


<div class="liste">
<ul>

<li>Title:'You Don\'t Know JS: Up & Going'</li>
<li> Author: 'Kyle Simpson' </li>
<li> Link: 'http://shop.oreilly.com/product/0636920039303.do'</li>
<li>Type: 'css' </li>

</ul>



<div class="liste">
<ul>

<li>Title: 'CSS Development with CSS3'</li>
<li> Author: 'Zachary Kingston' </li>
<li> Link: 'http://shop.oreilly.com/product/0636920057970.do'</li>
<li>Type: 'css' </li>

</ul>

</body>
<script type="text/javascript" src="index.js">

</script>
</html>
Empty file added index.js
Empty file.
32 changes: 32 additions & 0 deletions jsfausto.js
Original file line number Diff line number Diff line change
@@ -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("<div>" + "<ul> " + "<li id=title><b>Title</b>: " + books[i].title + "</li><br>" + "<li><b>Author</b>: " + books[i].author + "</li><br>" + "<li><b>Link</b>: " + books[i].link + "</li></br>" + "<li><b>Type:</b> " + books[i].type + "</li>" + "</ul>" + "</div>");
}