Lets write our first HTML document!

<!DOCTYPE html>

Basic HTML Structure

<!DOCTYPE html>
<html>
  <head>
  </head>
  <body>
  </body>
</html>

Let's Add Content!

We will now add some text to our first web page! Inside of the <body> tag, let's add the following text:

Hello, world!

So it looks like this: html <!DOCTYPE html> <html> <head> </head> <body> Hello, world! </body> </html>

Let's Open Our First Web Page!

Inspect The File With Chrome

 Previous Lesson Next Lesson 

Outline

[menu]

/