Sunday, 10 September 2017

Basics to HTML

Question:How to get started with basic HTML page basic?
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.

1 comment: