What is the correct way to write address in a HTML document

Topics

Introduction

What is the correct way to write address in a HTML document

<!DOCTYPE html>
<html>
<head>
  <title>www.techstudy.org</title>
  <meta charset="utf-8">
</head>
<body>
  <address>
    Address: 251, Seawoods<br> 
Navi Mumbai<br> 
INDIA.
  </address>
</body>
</html>

Result

What is the correct way to write address in a HTML document
What is the correct way to write address in a HTML document

Leave a Comment