Some Text control tags are
* <FONT> to decide the display font
* <B> to display text in Bold * <I> to display text in Italics * <H1> to <H6> to display text in header format * etc...
There are two (2) ways to decrease website font:Use of Heading TagsThere are different ways to decrease website font. First you can use heading tag. Heading tag has 6 tags that make text different from the others. Namely: " , , , , and . The smaller the header number the bigger the font. Therefore will make text bigger than the others. And will make the website text smaller. Use of Font TagsYou can control the font size better with Font tags. It should be inside the and tags. To use Font tags to resize a website font, type: "Example Text" without quotes. Replace the phrase "Example Text" with the text you want to appear smaller. Aside from the value 6, you can also replace it with the desired value from 1 to 7. A browser's default is 3.
HTML
<TITLE> </TITLE>, Text formatting tags
Tags that are styled with CSS defining bold text may look like this. Tags that are styled with CSS defining italicized text may look like this. Tags that are styled with CSS defining text that is strike-through'ed may look like this.
C. Tags
Mark
HTML tags can be made to create a basic webpage. The basic tags with some text can make a webpage in basic format.
You can use <b> and </b> tags to do it.
body
To display strikeout text use the <strike> tags. Example: <strike>Text</strike> Should Display: Text
<div style="text-align:right"> or <div align="right">
Generally, characters not surrounded by '<' and '>' signs are considered text in HTML. Characters between '<' and '>' signs are considered tags. Also characters between <script> and </script> tags are not considered text, they are script body and are executed by script interpreter, not simply displayed on webpage.