Doubt
I wanted to create a simple page where the heading would be MySkills and an unordered list of CSS, SQL, JAVA, RUBY, Python with a link in every name. I use the following script <!Doctype html> <html> <head> <title>WebPage</title> </head> <body> <h1><span>MySkills</span></h1> <ul> <li><a href="https://en.wikipedia.org/wiki/Cascading_Style_Sheets" target="_blank">CSS</a></li> <li><a href="https://www.java.com/en/" target="_blank>JAVA</a></li> <li><a href="https://en.wikipedia.org/wiki/SQL" target="_blank>SQL</a></li> <li><a href="https://en.wikipedia.org/wiki/Python_(programming_language)" target="_blank>PYTHON</a></li> <li><a href="https://en.wikipedia.org/wiki/Ruby_(programming_language)" target="_blank>RUBY</a></li> </ul> </body> </html> I used it in notepad but it opened only CSS. The rest were not displayed. Please help