
HTML stands for Hyper Text Markup Language. HTML is used to create web pages that could be viewed in a web browser
HTML has a standard maintained by the World Wide Web Consortium. HTML has gone through few revisions. Current HTML revision is 5.1 2nd Edition.
Common HTML structure;
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Business Page</title>
</head>
<body>
<h1>My business is called ... and I provide you with ....</h1>
<p>You must purchase my services and products because...</p>
</body>
</html>
or we can have a little bit more complex HTML structure as follows:
<!DOCTYPE html>
<html>
<head>
<title>Product</title>
</head>
<body>
<!-- this is a comment -->
<h1>Product Detail</h1>
<p>Click to <a href="demo.html">learn more</a> about my product.</p>
</body>
</html>
Comments
Post a Comment