Articles → HTML → Create Your First HTML Page
Create Your First HTML Page
Web Page
Hyperlink
Hypertext Pages
Markups
What Is HTML?
Software Required
- An editor (like notepad)
- Browser
Create Your First Web Page
<html>
<head>
<title>My first page</title>
</head>
<body>
</body>
</html>
Try It
- Html → Each HTML document starts with an ‘HTML’ markup (or tags). This tag signifies the start of an HTML document.
- Title → This markup sets the title of the web page i.e., the text that you see on the top left-hand side of the web browser (if your browser does not support multi-tab) or else text displayed on the tab.
- Head and body → I can explain the head and body section using the output of the preceding code.