HTML tags
HTML tags Some of the basic html tag are: <!DOCTYPE html> : Defines the document type and version of html. <html> : Root element of the HTML document. <head> : Contains meta-information about the document (e.g., title, links to stylesheets) <title> : Sets the title of the document, displayed in the browser tab. <body> : Contains the content of the HTML document. <p> : Defines a paragraph. <table> : Defines a table. It is used in conjunction with <tr> (table row), <th> (table header), and <td> (table data). <a> : Defines a hyperlink. Use the href attribute to specify the URL. <ul> : Defines an unordered list. Each item is marked with an <li> tag. <ol> : Defines an ordered list. Each item is marked with an <li> tag. ...