i am just beginning to learn html, and i am writing a page with notes in the page's text, like this:
<a /*tag*/ href="/* the address of the desired page*/ "> text for the link here, or what is actually clicked on/displayed </a>
i was told anything inside of /* */ is ignored by the computer entirely as if it were not there, but when i attempted this:
<a /*tag*/ href="http://www.google.com
/* the address of the desired page*/ "> text for the link here, or what is actually clicked on/displayed </a>
it attempted to open the page and gave me the following message:
The requested URL /*%20the%20addre ss%20of%20the%2 0desired%20page */ was not found on this server.
how would i put "notes" into my code that i can reference but are not "read" by the computer? my desire is to have a completed and working link with a description of each element in the code beside what part it is describing but the descriptions are ignored by the computer when using the link, if that makes any sense
<a /*tag*/ href="/* the address of the desired page*/ "> text for the link here, or what is actually clicked on/displayed </a>
i was told anything inside of /* */ is ignored by the computer entirely as if it were not there, but when i attempted this:
<a /*tag*/ href="http://www.google.com
/* the address of the desired page*/ "> text for the link here, or what is actually clicked on/displayed </a>
it attempted to open the page and gave me the following message:
The requested URL /*%20the%20addre ss%20of%20the%2 0desired%20page */ was not found on this server.
how would i put "notes" into my code that i can reference but are not "read" by the computer? my desire is to have a completed and working link with a description of each element in the code beside what part it is describing but the descriptions are ignored by the computer when using the link, if that makes any sense
Comment