link HTML

HTML <link> Tag To link an external source to the current document, the HTML <link> tag is used. It can also be used with link site icons. It is placed within the <head> tag of the HTML document. Syntax: <link rel=”stylesheet” type=”text/css” href=””> Example: <!DOCTYPE html> <html> <head> <link rel=”stylesheet” type=”text/css” href=”style.css”> </head> <body> <h1>HELLO … Read more