9 – 12h Teaching
Teacher:
12 – 13.30h Lunch (TBD)
13.30 – 17h Coaching
Coaches:
<ul>
<li>Nickname: <span id="nickname"></span>
<li>Hobby: <span id="hobby"></span>
<li>Hometown: <span id="hometown"></span>
</ul>
<script>
tag to the bottom of the HTML body.li
and change the class to "list-item"..list-item
to make the color red.img
element and set its src
attribute to a picture of you. Append that element to the page.Solution (View page source)
<ul>
section to your personal home page with the ID "my_books". var books = [
{
title: 'The Design of EveryDay Things',
author: 'Don Norman',
alreadyRead: false
}, {
title: 'The Most Human Human',
author: 'Brian Christian',
alreadyRead: true
}
];
<li>
element within your "my_books" list with the book name and author.<img>
to each bookSolution (View page source)
Use JavaScript to display the current day, date and time in the following format.
Sample Output :
Today is : Friday
Date: dd/mm/yyyy
Current time is : 2 PM : 32 : 10
Solution (View page source)
Use JavaScript to get the width and height of the window (any time the window is resized).
Solution (View page source)
Use Array (list), loop and insert the values in <p></p>
Solution (View page source)
Generate many images!
Solution (View page source)