WEBSIE
WEBSIE
To start your web development journey, you'll need a code editor. A popular choice
is **Visual Studio Code**. You can download it for free from the official website.
```html
<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
```
**In the next lesson, we'll dive deeper into HTML and learn how to create more
complex web pages.**