<title> This is a starting title tag.
</title> This is an ending title tag.
You put the page title inside the title tags. The page title will display in the web browser tab.
<!DOCTYPE html>
<html>
<head>
<title>Coding Cadets are awesome!</title>
<style>
/* CSS code goes here */
</style>
</head>
<html>
This is the title display for this lesson's page. I am hovering my mouse over the tap to get that box with the full title to appear.
<title>Intro to HTML: < title ><title>
Are you wondering what < and > mean? They are called
HTML entities. Entities are used to display certain symbols.
➼ < displays as
<
➼ > displays as
>
So my page title displays: Intro to HTML: <title>
*Complete list of entities: HTML Entity List
Play in the code editing box below. Try adding words. Also, try changing the entity numbers to see different symbols.