Songs, Music Blogs & Other Blog Topics

Category: HTML Webdesigning Course

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 …

Step 7 – Text Colors

Last update: February 15 2019 Besides adjusting the font type and its size, you can also add the COLOR-attribute to the FONT-tag. Remember, within the BODY-tag, a TEXT color was defined for the whole document. Now, we’ll (temporarily) adjust this later on in the document with the FONT-tag. Color Codes …

Step 8 – Headings

Last update: February 15 2019 This is probably one of the most important tags to use on your website. In HTML, you can create headings in 6 different sizes. In recent years, the popularity this tag has risen, thanks to the importance of it for ranking in search engines. However, …

Step 9 – Horizontal Rule

Last update: February 15 2019 When you use large amounts of text in HTML, you can divide your text into sections by adding a horizontal rule line. The code for this is <HR>: <html> <head> <title>my own homepage</title> </head> <body background=”images/background.gif” bgcolor=”#ffffe1″ text=”#808080″ link=”#ff9b6A”  vlink=”#ff0000″> <font face=”Arial”> <H2>A short introduction</H2> …