βThis is how a webpage is born π±β
Open VS Code (or any editor) and create a new file named index.html
Type the basic HTML boilerplate:
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Hello World</h1>
<p>Welcome to my first webpage.</p>
</body>
</html>
Save file β double-click to open in browser.
π Follow for Part 2
π» Like if this helped!
Top comments (0)