html-link
دوشنبه, ۲۲ ارديبهشت ۱۳۹۳، ۰۷:۳۲ ب.ظ
HTML Link Syntax
The HTML code for a link is simple. It looks like this:
<a href="url">Link text</a>
The href attribute specifies the destination of a link.
Example
<a href="http://www.w3schools.com/">Visit W3Schools</a>
The example below will open the linked document in a new browser window or a new tab:
Example
<a href="http://www.w3schools.com/" target="_blank">Visit W3Schools!</a>
- ۹۳/۰۲/۲۲