Answers for "base tag w3"

0

html base

<!doctype html>
<head>
<title>This is your title.</title>
<!--Head stuff here-->
</head>
<body>
<!--Body stuff here -->
</body>
</html>
Posted by: Guest on April-05-2021
0

basefont tag in html

<!-- The basefont tag WAS used to specify the default value of font style -->

<html>
  <head>
	<basefont color="blue" size="5" face="arial">
  </head>
  <body>
   	<p>The basefont tag is NOT supported in HTML5</p>
	<p>Please use CSS to style the document</p>
  </body>
</html>
Posted by: Guest on March-06-2021

Browse Popular Code Answers by Language