href: href பண்புக்கூறு இலக்கு முகவரியை முகவரியிட https://tamilictbetter.blogspot.com
target: இலக்கு window திறந்திருக்கும் window திறந்து(புதிய window திறக்க) அதே window திறக்கவும்.
<html> <body> Link open in same window<a href="#" target="_top">Click Here</a> Link open in new window<a href="#" target="_blank">Click Here</a> </body> </html>
Result
Target Attribute
Target Value | Description | |
---|---|---|
_blank | Opens the linked document in new window | |
_top | Opens the linked document in same window | |
_self | Opens the linked document in same frame as it was clicked (this is default) | |
framename | Opens the linked document in a given named frame | |
_parent | Opens the linked document in the parent frame |
Image as Link
படத்தில் இணைக்கப்பட்ட பக்கத்தின் மீது கிளிக் செய்தால் மற்றொரு பக்கத்திற்கு செல்லவும் அனுமதிக்கும் . கீழே உள்ள பட இணைப்பு வழங்கப்படுகிறது.
Example
<html> <body> <a href="/html/index" target="_top"><img src="files/sublogo.png" target="_blank"></a> </body> </html>
Result
Add caption |
0 Comments