• 0

Setting fonts


Question

Hi there.

I am looking for a way to set font type, color, size, etc for the whole webpage... maybe from the head tag... and maybe with a style tag?...

Would you please tell me the best way?

Thanks

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

You can use CSS like this

<html>

	<head>
  <title>New Page 1</title>
  <style type="text/css">
  	body {
  	font-family: tahoma;
  	font-size: 10pt;
  	color: #00AAFF
  	}
  </style>
	</head>

	<body>

	</body>

</html>

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.