Adding the head tag in the HTML file

I'm going to add my head tag first, and then I can go ahead and add my body tag. We'll then kick things off by adding a few tags into the head such as meta, so we can set our charset, and it is going to have a value of utf-8. We're also going to set a few other properties:

<head>
  <meta charset="utf-8">
 
</head>

I'm going to set a title tag, this is going to show up inside of the tab as the tab's title, we can set ours to Join then we can add a space, a vertical line by using |, and the name of our app, something like ChatApp: This will show up any tab title. Then we can go ahead and link in our style sheet just like we did for chat.html. I'm going to grab that style sheet reference from chat.html, copy ...

Get Advanced Node.js Development now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.