Your First Web-Page
Lets Create Your First Web Page
Copy and paste the following code into a new text document.
Html Code:
<html>
<head>
<title> My First Web Page</title>
</head>
<body>
<h1>This Is My first Page</h1>
<p>
I am learning html and this is my very first web page.
I will be building on it as I continue to learn how html works.
</p>
</body>
</html>
Save the file as discussed in the Introduction To HTML Tutorial. Open up your web browser, select File->Open and navigate to where you saved the file and click on it to open it. Your web page should resemble what we have below.
Browser Display:
This Is My first Page
I am learning html and this is my very first web page. I will be building on it as I continue to learn how html works.
You now have your very first web page! Now, lets take a look at what all those tags mean.