web.selah-hcs.orgweb design for kids // html5 + css3one day academy
THIS WEEK'S JOB // Create index.html in your folder and put real words on the real web page. (Book pages 88-95 in Mrs. Gaiser's book.)
THE THREE IDEAS
Save, refresh, repeat
The loop of this whole class: change the file, save it, refresh the browser, see the change. You will do this ten thousand times and it never stops being satisfying.
The title is the tab
What you put in the title element shows in the browser tab and in search results. Small tag, big job.
One page, one file
index.html is a plain text file. Notepad can write it. That is the whole secret the fancy tools are hiding.
TRY IT IN THE PAINT BOOTH
<!DOCTYPE html>
<html>
<head>
<title>Best Stuff For Kids</title>
</head>
<body>
Welcome to my website. It is under construction!
</body>
</html>