HTML5 Tutorial - address Tag in HTML in Hindi


HTML address Tag HTML document में nearest article या body ancestor के लिए contact information को define करता है। Browsers traditionally रूप से address tag के भीतर पाए जाने वाले Text को italicized text के रूप में प्रस्तुत करते हैं। इस tag को आमतौर पर address element के रूप में भी जाना जाता है।


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML 5 Document</title>
</head>
<body>
<address>
My Project HD<br>
myprojecthd.in<br>
myprojecthd Ujjain<br>
Madhya Pradesh
</address>
</body>
</html>
view raw addresstag.html hosted with ❤ by GitHub