Web Building Lessons
Creating our first HTML document
In this lesson we will walk through creating an empty HTML document and learn about HTML
document structure and some simple HTML tags. Use the buttons below to navigate through the
lesson First, create a place to put our …Take lesson
Understanding Basic HTML
In this lesson we’ll learn about some of the simplest HTML tags and how they function. So far
we have a very simple index.html: <!DOCTYPE html> <html> <head> <title>FOTC First
Website</title> </head> <body> This is our first FOTC web page. …Take lesson
Adding Text to our HTML page
In this lesson we’ll learn about some HTML tags that help us structure text in our web
pages. If you haven’t followed the lessons up to now then you should start from the beginning of the
course. For this lesson …Take lesson
Adding Links and Images in HTML
In this lesson we’ll learn some HTML tags that allow us to add links and images to our web
pages. If you haven’t followed the lessons up to now then you should start from the beginning of
the course. For …Take lesson
How to add navigation to a simple HTML page
In this lesson we’ll add navigation between our two simple HTML web pages. If you haven’t followed the
lessons up to now then you should start from the beginning of the course. For this lesson you’ll want to
have your …Take lesson
Class, ID and < div > and < span > in HTML
In this lesson we’ll learn about class and ID attributes, and two tags that are useful for structuring
our HTML. If you haven’t followed the lessons up to now then you should start from the
beginning of the course. For …Take lesson
How are complex HTML websites created?
In this lesson we’ll understand how more complex modern websites are created. Now we have
created our first website, with two basic pages and a navigation bar that lets us move between
them. We understand how to add images, and …Take lesson