Question:How to get started with basic HTML page basic?
<body>
<h1>Heading of your website</h1>
<p>Here write the content to be shown on the web page</p>
</body>
</html>
Answer:
Important note:Recommendation is to use sublime text as a text editor tool.
<!DOCTYPE html>
<html><body>
<h1>Heading of your website</h1>
<p>Here write the content to be shown on the web page</p>
</body>
</html>
That's all go for your first web page.
This comment has been removed by the author.
ReplyDelete