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
- 01Give your page a structurePreview
Change the heading to your name and add a second paragraph about yourself.
- 02Make it yours with CSS
Choose another heading color and change the page spacing.
- 03Add 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.
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
Have a question about this course? Get in touch.Change the heading to your name and add a second paragraph about yourself.