Skip to main content
⚡ Digital Gardening Project ⚡

<title>: Make it a good one

Not a lot to comment on for this one. #

Source Example
<head>
  <title>Webpage Title</title>
</head>

A text only element -- elements placed within are ignored -- that appears in the tab of the browser or title of the webpage. Relevant for accessibility and SEO. #

You can change the Title with JavaScript using the document.title property and changing it, such as onclick="document.title = 'Success!';"

Change the title

#