Hi, sorry if this seems simple - I've started learning HTML and CSS and the w3schools tutorial wasn't clear about this.
Is it required to have a "title" attribute after all links?
For example:
Code:
<a href="/" title="Home">HOME</a>
Would there be any problems if I removed the title attribute? Or changed it to
What are the advantages of having a title?
Also, when linking to pages in my website.... does it matter if my code links to www.example.com or is it okay to have href="/" as in the example above? Should I use <a href="www.example.com/about.html"> or <a href="/about.html">? Should I add a slash to the end of links (a href="/about.html/")?
Many thanks.
|