HTML5 - Anchor separate from base link -
HTML5 - Anchor separate from base link -
i've been practising html5 of recent, , come halt. i've added anchor part of code, when seek link it, link goes straight base of operations link. there anyway past this?
this snippet of code:
<head> <base href="http://en.wikipedia.org/wiki/" target="_blank" /> </head> <body> (...) link anchor: <a href="#link">link!</a> (...) <a name="link">welcome!</a> </body>
thanks!
try:
<span id="link">welcome!</span>
the name
attribute form elements in html5.
html5
Comments
Post a Comment