First HTML Script
That was just worm up for learning HTML. Lets start codding now.
I am sharing code block here copy it in text file and save as test.html.
Make sure that file extension is visible in your system.
Once you save this HTML open it in browser.
HTML Code:
I am sharing code block here copy it in text file and save as test.html.
Make sure that file extension is visible in your system.
Once you save this HTML open it in browser.
HTML Code:
<!DOCTYPE html>
<html>
<head>
<title>Awesome Title</title>
</head>
<body>
<h1>My First HTML Page</h1>
<p>You Rock.</p>
</body>
</html>
Comments
Post a Comment