Skip to content
  • Home
  • About
    • Who’s Nora Tol?
    • News
    • Artist Biography
    • ElNorado productions
    • Clients & Portfolio
      • Design
        • Logos
        • Product Images
        • Webdesign
  • Songs
    • Cover Songs
  • Music blogs
    • Logic Pro X blogs
    • YouTube Playlists
    • Concert/Show reviews
  • Art & Creations
    • Drawings
    • Sewing Projects
    • DIY and Home Decor
  • Recipes
  • Internet
    • HTML Webdesigning Course
      • Introduction – Step by Step HTML course
      • Step 1 – How to begin
      • Step 2 – Head
      • Step 3 – Body
      • Step 4 – Text
      • Step 5 – Emphasizing bits of text
      • Step 6 – Using Fonts
      • Step 7 – Colours
      • Step 8 – Headlines
      • Step 9 – Horizontal Rule
      • Step 10 – Center
      • Step 11 – Lists
      • Step 12 – Images
      • Step 13 – Links
      • Step 14 – Forms
      • Step 15 – Tables
      • Step 16 – Frames
      • Step 17 – Uploading the website
      • Step 18 – Promoting the website
      • Step 19 – More meta tags:
    • HTML Cursus (Dutch)
      • Inleiding – Stap voor Stap HTML Cursus
      • Stap 1 – beginnen met HTML
      • Stap 2 – Head
      • Stap 3 – body
      • Stap 4 – tekst
      • Stap 5 – Accentueren van tekst
      • Stap 6 – Fonts gebruiken
      • Stap 7 – kleuren
      • Stap 8 – headlines
      • Stap 9 – scheidingslijnen
      • Stap 10 – centreren
      • Stap 11 – lijsten
      • Stap 12 – foto’s
      • Stap 13 – links maken
      • Stap 14 – formulieren
      • Stap 15 – tabellen
      • Stap 16 – frames
      • Stap 17 – uploaden
      • Stap 18 – promotie
      • Stap 19 – meer meta tags
      • Wat is CSS?
      • Wat is de W3C standaard?
      • Zoekmachines begrijpen en beïnvloeden
    • HTML5 Step By Step course
      • Step 1: Start the file
      • Step 2: Head
      • Step 3: Body
      • Step 4: Text
      • Step 5: Specific content
      • Step 6: Images
      • Step 7: Add media (audio and video)
      • Step 8: Lists
      • Step 9: Links
      • Step 10: Vector Graphics
      • Step 11: Canvas
      • Step 12: Forms
    • Learn about search engines and SEO
      • What search engines do?
      • Crawling
      • Indexing
        • How to create a robots.txt file
      • Ranking
      • What is SERP?
      • Google PageRank explained
  • Contact
    • Social Media
    • Newsletter signup
Home » Internet » Category "HTML Webdesigning Course"

Category: HTML Webdesigning Course

HTML CourseFind out how to create a website of your own from scratch? Without the help of editors? Or do you need to know a little bit HTML for your daily work? This step by step course will explain it to you in 19 steps.

I’ve worked as a web designer since the middle of the 90s. I use HTML daily to create some really cool things. My online HTML course will provide you all the basics and prepare you for the rest. Let’s get you started!

Introduction – Step by Step HTML course

  By Nora December 25, 2013 February 21, 2019 HTML Webdesigning Course

Welcome to my free online Step by Step HTML course. First, let me explain some of the basics. Last update: February 15, 2019 What does HTML stand for? What does it do? HTML stands for Hyper Text Markup Language. With… Read on

Tagged   html course, webdesign

Step 1 – How to begin

  By Nora December 29, 2012 March 1, 2019 HTML Webdesigning Course

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>,… Read on

Tagged   html course, webdesign

Step 2 – Head

  By Nora December 20, 2012 February 21, 2019 HTML Webdesigning Course

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

Tagged   html course, webdesign

Step 3 – Body

  By Nora December 19, 2012 July 29, 2019 HTML Webdesigning Course

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

Tagged   html course, webdesign

Step 4 – Text

  By Nora December 18, 2012 July 29, 2019 HTML Webdesigning Course

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,… Read on

Tagged   html course, webdesign

Step 5 – Make text bold, italic, underlined..

  By Nora December 17, 2012 August 1, 2019 HTML Webdesigning Course

Last update: February 15 2019 Of course, you want certain parts of your text to grab the attention. You have a few options available to do this: Bold, Underline, Italic or Strike Through Scroll text horizontally Blink text Bold, Underline… Read on

Tagged   html course, webdesign

Step 6 – Using Fonts

  By Nora December 16, 2012 July 29, 2019 HTML Webdesigning Course

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

Tagged   html course, webdesign

Step 7 – Text Colors

  By Nora December 15, 2012 July 29, 2019 HTML Webdesigning Course

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

Tagged   html course, webdesign

Step 8 – Headings

  By Nora December 14, 2012 July 29, 2019 HTML Webdesigning Course

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

Tagged   html course, seo, webdesign

Step 9 – Horizontal Rule

  By Nora December 13, 2012 September 17, 2019 HTML Webdesigning Course

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

Tagged   html course, webdesign
« Older posts
  • YouTube Twitter Instagram Facebook Pinterest
  • HTML Webdesigning Course

    • Introduction - Step by Step HTML course
    • Step 1 - How to begin
    • Step 2 - Head
    • Step 3 - Body
    • Step 4 - Text
    • Step 5 - Make text bold, italic, underlined..
    • Step 6 - Using Fonts
    • Step 7 - Text Colors

    Featuring Top 8/20 of HTML Webdesigning Course

  • Recently posted to the site

    • Upcycle project: Color Block Sweater September 15, 2022
    • Hold On (Kayleigh featuring Nora Tol) June 1, 2022
    • Upcycle project: Foldable Tray Table For Tea Lovers June 4, 2021
    • You Take Me Higher June 4, 2021
    • Easy Please Me April 23, 2021
  • Privacy Statement
This website has been put together with great care by Nora Tol, ElNorado Productions. Still, mistakes are human, so if you spot any, just let me know.
Powered by Parabola & WordPress.
YouTube Twitter Instagram Facebook Pinterest