Someone made a great conversion table. Check out http://www.reeddesign.co.uk/test/points-pixels.html.
Chat with our AI personalities
The font tag has an attribute called "Face" using which you can set the font type. Ex: <Font face = "Verdana"> will display all following text in the Verdana font. You can also set font size and color using this tag. Ex: <Font face = "Verdana" color = "Red" size = "10"> will display text in Verdana font, red color and 10 pixels high in size.
You would specify the font size like so:.myClassName {font-size: 10px;}You can specify font sizes in:- pixels (as seen above, by putting "px" at the end)- points (think MS Word sizes, by putting "pt" at the end)- ems (throw-back from printing presses, by putting "em" at the end)- percentages (percentage of the inherited size, by putting "%" at the end)
font-size Can be in pixels, ems, cm, in, or a percent. Also can be small, medium, large, etc.
The values specify the properties of the attribute which provide additional information about HTML element. For example: the element Font will have an attribute to define the color of the font, and the value will be the color. This information is used in the start tag. <font face="arial">This is arial font</font> ="arial" is the value. (Element Attribute= "value"> General values could include size= "2" ( "2" is the value to define the size of the font in pixels) or color = "000000" (="000000" is the value to define the color of the font)
Html mostly uses three main parts. The thing,(e.g. <FONT size="10"></font>) the thing your changing, (e.g. <font SIZE="10"></font>) ,what your changing it to.(e.g. <font size="IO"></font) And the closing tab.(e.g. <text size="10"></FONT>)Then you put some of the thing (e.g. <font size="10">Content of your site</font>)