Current Assignment(s)
A3: Markup
Due: Recommended by Monday, 5.28
Due: Recommended by Monday, 5.28
Title
The title tag defines the title of a document. This action:
- 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.
You cannot have more than one title element. However, you must have the title element for the document to validate as HTML.
IMPORTANT: This is the only required element in the head.
Remember? The title tag aptly contains your site’s or page’s title.
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="Head Elements in HTML">
<meta name="author" content="Justine Evans">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Way-Cool Awesome Site</title>
</head>
</html>
- Previous
- Next