How do you make Icons that show up on the tab? For example like this.
You need to link a favicon in your HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- ↓↓↓↓ THIS ↓↓↓↓ -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
Thank you!
I didn’t know it was called Favicon.