Header Ads Widget

Html Hyperlink

பயனர்கள் ஒரு பக்கத்திலிருந்து மற்றொரு பக்கத்திற்கு செல்லவும் அனுமதிக்கும் இணைப்புகளை உருவாக்க Html Hyperlink பயன்படுத்தப்படுகிறது. Html Hyperlinkஉருவாக்க <a> குறிச்சொல்லை பயன்படுத்துக. <a> குறிச்சொல் பண்புகளை பின்பற்றும்;

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

Link open in same windowClick Here 
Link open in new windowClick Here

Target Attribute

Target ValueDescription
_blankOpens the linked document in new window
_topOpens the linked document in same window
_selfOpens the linked document in same frame as it was clicked (this is default)
framenameOpens the linked document in a given named frame
_parentOpens 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

Post a Comment

0 Comments