Building Your Learning Module...
Getting things ready for you!
Find videos you like?
Save to resource drawer for future reference!
The <title> element defines the text shown in the browser tab, bookmarks, and search engine results.
Browser Tab
Bookmarks
Search Results
Visual representation of title element
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div class="diagram">
<div class="browser-tab">📄 My Awesome Website - Home</div>
<div class="arrow">↑</div>
<code><title>My Awesome Website - Home</title></code>
</div>
</body>
</html>Loading preview...
Simple title implementation
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Awesome Website - Home</title>
</head>
<body>
<h1>Welcome!</h1>
<p>Check the browser tab to see the title.</p>
</body>
</html>Loading preview...
Primary Keyword - Secondary Info | Brand