Horizontal tagIn the html document, the horizontal tag element represents a horizontal line that is used to visually separate the content. It is an empty element which also means it does not have any content and there is no requirement for any closing tag. Here is...Feb 25, 2023·1 min read
Introduction to RPAThis is a software technology that enables the building of different types of software which performs the actions done by humans. Just like us, human beings' software can also perform the same things which are navigation, extraction of data and more....Feb 19, 2023·3 min read
link tagThe <link> element in HTML is used to link external resources, such as stylesheets, to an HTML document. It is placed in the head of the document and does not require a closing tag. Here is an example of how to use the <link> element to link a styles...Feb 18, 2023·1 min read
Head tagIn HTML head tag acts as a container for metadata (data about data) and is placed between the element and the element. Metadata contains information such as the title of the page, the author, and any other relevant information that is not the main co...Feb 17, 2023·1 min read
Strike tagIn HTML, the <strike> or <s> tag is used to represent text that should be displayed with a strikethrough. The <strike> or <s> tag is an inline element, which means that it can be used within a line of text and does not create a new line. Here is an e...Feb 12, 2023·1 min read
Center tagIn HTML, the <center> tag is used to center content horizontally within a container element. The <center> tag is a block-level element, which means that it creates a new line and takes up the full width of its parent element. Here is an example of ho...Feb 11, 2023·1 min read
Strong tagIn HTML, the <strong> tag is used to represent text that should be displayed in bold and that is of importance. The <strong> tag is an inline element, which means that it can be used within a line of text and does not create a new line. Here is an ex...Feb 5, 2023·1 min read