Jump to content

Font


Azuna

Recommended Posts

the font used, size are listed herebody, div, input, select {color:#333333;font-family:Tahoma,Geneva,sans-serif;font-size:8pt;}
Where do I must put it?
Link to comment
Share on other sites

Wherever you set the font in your HTML page.

Link to comment
Share on other sites

CSS

body{  color:#333333;  font-family:Tahoma,Geneva,sans-serif;  font-size:8pt;}

HTML

<html>  <body>	Hello World  </body></html>

*Note that to change the case for a <p>, <h1>, <h2>..., <a>, etc just change the CSS from body to p, and then just wrap your text in the appropriate tag.

Link to comment
Share on other sites

well it depends which <head>...</head> tag you use in which <body>...</body> or <html>...</html>, i count at least 2 or 3 when "there can only be one" (highlander moment there) of each in each page, until you sort this out, nothing will work as expected.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...