Songs, Music Blogs & Other Blog Topics

Category: Internet

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> …

Step 10 – Center

Last update: February 15 2019 With HTML you can center text, an image or other parts of your design. It’s very simple. Nevertheless, I’d like to point out that the <CENTER>-tag got phased out in HTML5, forcing you to use CSS. The tag is still supported by browsers though. Center …

Step 11 – Lists

Last update: February 15 2019 Lists tags are so useful. They make information so easy to read! Create lists with HTML using one of the LIST-tags. There are three kinds. In this step, you’ll learn them all: Numbered lists Bullet Lists Description Lists and I’ll also explain how you can …

Step 12 – Images

Last update: September 12, 2019 What’s a website without graphics and images? Within HTML you can use the images tag to place images as part of a layout or as part of content. This step will teach you: How to add an image to HTML How to align an image …

Step 13 – Links

Last update: February 16 2019 Nothing is as important as linking on a website, otherwise known as hyperlinking. In this step, you’ll learn to create an HTML hyperlink: to a website to an e-mail address to open a link in a new tab to download a file to jump to …

Step 14 – Forms

Last update: March 3 2019 In step 13, you’ve learned to create an e-mail link. However, why not send an e-mail using an online e-mail form? Very user friendly, and you get the perk to request specific information you need from someone. In this step, you get to learn: How …