The "basefont" tag is used to set default font for all text in website. HTML5 not supported this tag.
For example:-
<!DOCTYPE html>
<html>
<head>
<title>Basefont tag</title>
<basefont color="red" size="5" face="arial">
</head>
<body>
<h2>Example of Basefont tag</h2>
<p>The basefornt tag is not supported in HTML5 use CSS to style the document</p>
</body>
</html>
Copyright ©2022 coderraj.com. All Rights Reserved.