Basic Tags
In this module, we'll discuss the following:
Basic tags, especially head & body.
Create a basic Hello World page
File Location
You should be located in the following file:
Tags
A tag is used to surround content and apply meaning. The opening tag tells the browser to start rendering something. The closing tag tells the browser where the tag ends.
Starter Code
While inside your 01-basic-tags.html
, add the following code:
Notice that there is a closing tag for each opening one. For instance, <h1>
is closed by </h1>
. The /
indicates closing. So everything within those two tags will be shown in the browser.
Let's break down a few of the tags in the above code:
DOCTYPE
DOCTYPE
states the document type. It's a declaration that lets the browser know which flavor of html you are using. For our purposes in this course, we will always use this tag to start our html
pages.
<html>The HTML Tag</html>
<html>The HTML Tag</html>
html
hypertext markup language is language used for describing web documents. All of our HTML code will get nested inside of there.
<head>The Head Tag</head>
<head>The Head Tag</head>
The <head>
element is a container for metadata (data about data) and is placed between the <html>
tag and the <body>
tag. Excluding the <title>
tag, contents inside the head tag are not visible on the page.
<title>The Title Tag</title>
<title>The Title Tag</title>
The <title>
tag is required in all HTML documents, and it defines the title of the document.
Defines a title in the browser toolbar
Provides a title for the page when it is added to favorites
Displays a title for the page in search-engine results
<body>The Body Tag</body>
<body>The Body Tag</body>
The body tag defines a document's body. Items placed inside of the body tag will render to the DOM(the Document Object Model) and be seen in the view.
Consider This:
Think of the head as doing the invisible thinking and setup; the body manifests or shows the actual content.
Run the Code
Now that you've added some HTML, let's run the code. 1. Save your file by pressing ctrl + s
2. On a Windows machine, click on the .html
file and press ctrl + alt + o
. On a Mac cmd + alt + o
. 3. You should be given a list of browsers. Choose Chrome.
Last updated