January 2018
Beginner
658 pages
13h 10m
English
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:
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>