It's already on your computer — and it's all you need to write your first website.
Notepad is a plain-text editor built directly into Windows. It has been included with every version of Windows since 1985 and costs absolutely nothing. Because it saves files as plain text with no hidden formatting, it is perfect for writing HTML, CSS, and simple JavaScript.
Professional developers use powerful editors like VS Code, but for a beginner building their first site, Notepad removes every barrier — no download, no account, no cost.
There are three easy ways to launch Notepad on any Windows computer:
notepad, and press Enter.index.html.notepad, press Enter.Once Notepad is open, type (or paste) the HTML below and then save it as index.html — make sure to change the file type from Text Documents (*.txt) to All Files when saving, otherwise Windows will add .txt to the end.
Notepad is perfect for learning the fundamentals. Once you're comfortable with HTML and CSS and want to move faster, consider upgrading to Notepad++ (free, Windows) or Visual Studio Code (free, all platforms). Both add syntax highlighting, auto-indenting, and error hints — but they're not necessary to start.
Continue to the Beginner's Guide →