We'll create the head tag first:
<!DOCTYPE html>
<html>
<head>
</head>
</html>
Inside head, we'll provide two pieces of info, charset and title tag:
- First up we have to set up the charset which lets the browser know how to render our characters.
- Next up we'll provide the title tag. The title tag lets the browser know what to render in that title bar, where the new tab usually is.
As shown in the following code snippet, we'll set meta. And on meta, we'll set the charset property using equals, and provide the value utf-8:
<head>
<meta charset="utf-8">
</head>
For the title tag, we can set it to whatever we like; Help Page seems appropriate:
<head>
<meta charset="utf-8">
<title>Help Page</title>
</head>