HTML Formatting | HTML 2020
HTML Formatting If you use Word processing you must know about formatting. Formatting is the process to change the layout of the documents. Word processing provide us many formatting tools such as bold, italic, strick through etc. Similarly HTML provide its users to do such task with coding. Basic HTML Formatting Elements The basic elements use for formatting HTML pages are Bold Italic Underline Strick through So we will define these one by one with examples and showing its output. Bold Bold <b> tag is use to bold the text. It begin with <b> and end with </b>. The text between <b> and </b> will be bold. This tag is use when we needed to bold something in our document. You can use more than one <b> tag. Example < html > < head > < title > Bold </ title > </ head > < body > < p > This...