Understanding HTML: A Beginner's Guide to Website Building
HTML is the standard markup language for Web pages. with HTML you can create your own Website.
It gives structure to a website.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragrap...
rjlabs.hashnode.dev2 min read