Skip to main content

Posts

Showing posts with the label Learning Anchor Tag 2

Learning Anchor Tag 2

Learning Anchor Tag 2 <!DOCTYPE html> <html> <head> <title>Blog | Coding Ninja </title> </head> </body> <h3> <a href="../ Index.html"> Home</a> </h3> <p> Blog Categories</p> <ul> <li> <a href="general/ best coding practices.html"> general</a> </li> <li> <a href="web/five-tips.html">web</a> </li> </ul> </body> </html>  EXPLAINTION   I can explain the HTML code you have shared. The code creates a simple web page with a heading, a paragraph, and an unordered list. The heading has an anchor tag with the href attribute set to "../Index.html". This means that the anchor tag will link to the file `Index.html` in the same directory as the current file. The unordered list has two list items. Each list item has an anchor tag with the href attribute set to a different file. The first list item links ...