so i see you want to get started with web development okay!. to create your first webpage you will need following things
- a computer or laptop
- internet
- browser
thats it my friends 😀 we are good to go
1] open your text editor / notepad / sublime text
2] create one file first.html and as you can see i saved it with .html extension
3] then type below code in first.html file
<html>
<head>
<title>This is my first webpage</title>
</head>
<body>
<h1>This is my first webpage i am learning to create webpage / website</h1>
</body>
</html>
4] after saving the file open it (by double clicking) or open it in Chrome Browser or any other browser
you should see result like below image
Congratulations my friend you just created your first webpage / website . see you in the next tutorial where we will learn how to add more text to our webpage.
Comments
Post a Comment