Monday, November 9, 2020

Code to add external CSS in a HTML

External styles are defined within the <link> element, inside the <head> section of an HTML page:

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="mystyle.css">
</head>

No comments:

Post a Comment