Songs, Music Blogs & Other Blog Topics

I’m a radio DJ!

What an interview can lead to! My friends at Small Wonder (Radio Parkstad) have invited me to be a permanent feature of their show. Last Friday I hacked into the show and claimed my one minute of air time and it tasted like more. So starting this Friday I’m Robert’s …

Step 1 – How to begin

Last update: February 15, 2019 Starting an HTML file is easy. The first thing we need to define, is the fact that we’ll be ‘programming’ in HTML. You do this as followed: Type this in Notepad: <html> </html> With <html>, you open your document and state that whatever is to …

Step 2 – Head

Last update: February 15 2019 An HTML document has two parts: A Head and a Body. The Head usually contains a title that appears at the top of a browser tab. The Body contains all the details about the lay out. This shapes the website that becomes visible in the …

Step 3 – Body

Last update: February 15 2019 Now, let’s start designing the lay-out of the web page by creating the Body of the HTML document. The BODY-element needs to be opened and closed. Anything written in between will show in the browser window. BTW, you’ll be learning 3 things in this step: …

Step 4 – Text

Last update: February 15 2019 What’s a website without text? In this step, you’ll learn: How to add text How to add line breaks (enters) and paragraphs How to create additional white space in sentences Adding Text Whatever you type, in between the BODY-tag, becomes visible in the browser window. …

Step 6 – Using Fonts

Last update: February 15 2019 You can also make text stand out using FONT-tag. This allows you to: Adjust the size of the text Change the type of font you’re using Note: Though it’s great to know about this, usually we use CSS for this and, I predict, that the …