|
Choose a lesson here: HTML Tags: **HTML Tag List Lesson1:Head Tag Lesson2:Body Tag Inside Body: Lesson3:Background Color Lesson4:Background Image Text Manipulation: Lesson5:b,u,i,center,br Lesson6:hr,ur,li,ol Lesson7:h1,space,div Lesson8:pre,font Lesson9:strike,power Images: Lesson10:Inserting Images
|
|
How to create bold text in html? How to create underlined text in html? How to create italic word aligned center in html? Use b,u,i,center,br Tag! We are going to see how to decorate the text
- Bold font: <b></b> Any text given in between the "b" tag will appear as bold
- Underline tag: <u></u> Any text given in between the "u" tag will appear underlined
- Italics: <i></i> Any text given in between the "i" tag will appear in italics
- Align Center: <center></center> Any text given in between the "center" tag will be aligned center
- Line Break: <br> This is a tag which is used to break the line and move to next line. This tag does not require closing tag. When ever you want the text to start in a new line give the tag <br>
|