   This <font> tag has many options that
    can alter text within an html
    document, like you would in a word
    document.
 <font size=12>Blah blah</font>
 This string of code will make the text
  “Blah blah” 12 point font.
 <font face=“comic sans ms”>Blah
  blah</font>
 This would make the text “Blah blah”
  become the fonts style comic sans ms.
 <font color=“green”>Blah blah</font>
 This would make the text “Blah blah”
  appear green in the html text.
 This could all be combined when
  creating a style for your text in HTML.
 <font size=12 face=“comic sans ms”
  color=“green”>Blah Blah</font>
 Which would appear-
    ›   Blah blah
 Font is now considered obsolete in
  HTML5.
 The way font is now changed is usually
  using Cascading Style Sheets (CSS).
 The reason that CSS is now used most for
  coding is because, it allows coders to
  create a mass style for a website in one
  separate document.
 As for how this helps font, coders would
  have to individually put a tag per page
  to keep it uniform. CSS makes it much
  easier.
   Code for font using CSS would look like
    something similar to this-
    › p{font-family:"Times New
      Roman", Times, serif;}
   The difference between the html and
    the CSS version of this tag is not very
    different. Just a different style of code.


<font size=12             p{font-family:"Times New
face=“comic sans ms"      Roman", Times, serif;}
color=“green"> Blah
blah</font>

Kristina benjamin fonttag

  • 2.
    This <font> tag has many options that can alter text within an html document, like you would in a word document.
  • 3.
     <font size=12>Blahblah</font>  This string of code will make the text “Blah blah” 12 point font.
  • 4.
     <font face=“comicsans ms”>Blah blah</font>  This would make the text “Blah blah” become the fonts style comic sans ms.
  • 5.
     <font color=“green”>Blahblah</font>  This would make the text “Blah blah” appear green in the html text.
  • 6.
     This couldall be combined when creating a style for your text in HTML.  <font size=12 face=“comic sans ms” color=“green”>Blah Blah</font>  Which would appear- › Blah blah
  • 8.
     Font isnow considered obsolete in HTML5.  The way font is now changed is usually using Cascading Style Sheets (CSS).
  • 9.
     The reasonthat CSS is now used most for coding is because, it allows coders to create a mass style for a website in one separate document.  As for how this helps font, coders would have to individually put a tag per page to keep it uniform. CSS makes it much easier.
  • 10.
    Code for font using CSS would look like something similar to this- › p{font-family:"Times New Roman", Times, serif;}
  • 11.
    The difference between the html and the CSS version of this tag is not very different. Just a different style of code. <font size=12 p{font-family:"Times New face=“comic sans ms" Roman", Times, serif;} color=“green"> Blah blah</font>