This is supposed to be a topnav, but clearly it didn't work out.

FAVICONS

Last updated January 11, 2023

Favicons are the little icons that show up next to the name of your page. They're really easy to set up, and make your page look way better.

You can use any image that is a PNG, GIF, or ICO as a favicon. You can make one using any normal image editor or paint program, or you can get one for free from a site like favicon.cc.



      <!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>
<body>

<h1> Favicons </h1>
The favicon for this page should be /assets/icon.png!
</body>
</html>

OUTPUT:
Favicon = /assets/icon.pmg

Favicons

The favicon for this page should be /assets/icon.png!

To add a favicon to your website, put the image anywhere on your site, then put a <link> element to set the favicon.