Defining HTML Content
In this lesson, we define the content that will go into our HTML webpage. Let's begin!
We'll cover the following...
Defining text content
As you already learned, HTML is about defining the content of your web pages, and it is specified between the <body>
and </body>
elements.
<!DOCTYPE html><html><head><title>Defining HTML Content</title></head><body>This is a part of this page's content<p>This is a paragraph</p></body></html>
This content can be text, images, audio, video, drawings, forms, ...