All courses
WEB DEVELOPMENT / BEGINNER

Your first website

Go from a blank page to a website you can call your own. Start with HTML and CSS.

3 text lessons 15 min + practice English

What you’ll learn

  1. 01
    Give your page a structure

    Change the heading to your name and add a second paragraph about yourself.

    Preview
  2. 02
    Make it yours with CSS

    Choose another heading color and change the page spacing.

  3. 03
    Add your first interaction

    Make the button change the paragraph too. You have a working interactive page.

Before you start

No previous coding experience is needed. Use a laptop or desktop with an internet connection, a modern web browser, and a text editor. Lessons can be read on mobile, but a computer is best for the exercises.

FREE PREVIEW / LESSON 01

Give your page a structure

HTML describes your content. A heading tells readers what the page is about; paragraphs hold the details. Save the example as index.html and open it in your browser.

<!doctype html>
<html lang="en">
  <title>My first website</title>
  <h1>Hello, world!</h1>
  <p>I am learning with CrazyTopup.</p>
</html>
Your turn

Change the heading to your name and add a second paragraph about yourself.

Have a question about this course? Get in touch.