HTML Text Formatiing
HTML Tags: An HTML document consist of its basic building blocks which are: Tags: An HTML tag surrounds the content and apply meaning to it. It is written between < and > brackets. Attribute: An attribute in HTML provides extra information about the element, and it is applied within the start tag. An HTML attribute contains two fields: name & value. Syntax <tag name attribute_name= " attr_value" > content </ tag name > Elements: An HTML element is an individual component of an HTML file. In an HTML file, everything written within tags are termed as HTML elements. Text formatting: HTML contains several elements for defining text with a special meaning. Formatting elements were designed to display special types of text: · <b> - Bold text Ex: < b > This text is bold < /b > · <strong> - Important, text Ex: < strong > This text is important! < /strong > ·