basefont tag in html

Solutions on MaxInterview for basefont tag in html by the best coders in the world

showing results for - "basefont tag in html"
Ana Sofia
01 Oct 2020
1<!-- The basefont tag WAS used to specify the default value of font style -->
2
3<html>
4  <head>
5	<basefont color="blue" size="5" face="arial">
6  </head>
7  <body>
8   	<p>The basefont tag is NOT supported in HTML5</p>
9	<p>Please use CSS to style the document</p>
10  </body>
11</html>