Skip to content

Your First Page

You have learned what the web is, what a browser does, and what HTML, CSS, and JavaScript each do. Now it is time to build something real — your first proper web page, written entirely by you.

This is not a throwaway exercise. The page you build here uses exactly the same HTML and CSS you would find on any professional website. The only difference is that real sites have more of it.

A simple personal introduction card: your name as a heading, a short sentence about yourself, and a link. Then you will style it to make it look the way you want.

Start with the structure. An <h1> for your name, a <p> for a description, and an <a> for a link.

<h1>Maya Chen</h1>
<p>UI designer based in Bangkok. I love design systems and clean type.</p>
<a href="https://dribbble.com">See my work</a>

Notice there is no design here yet — just content and meaning. The <h1> signals “this is the most important heading.” The <p> signals “this is a paragraph.” The <a> signals “this is a link.” HTML is communicating what things are, not how they look.

Now add the design layer. CSS targets each element by name and applies visual properties to it.

h1 { color: #7C3AED; font-size: 2rem; }
p { color: #374151; }
a { color: #7C3AED; }

Every CSS rule follows the pattern: selector (which element to style) + property (what to change) + value (what to change it to). That is the entire CSS syntax.

The editor below has a starter version. Make it yours — change the name, the description, the colors, the font size. There is no wrong answer. Every time you save a change in a real project, this is what you are doing.

Try these changes one at a time to build your confidence:

  1. Replace Maya Chen with your own name.
  2. Change #7C3AED (purple) to #0EA5E9 (blue) in both the HTML and CSS.
  3. Change border-radius: 20px to border-radius: 4px to make the card square-cornered.
  4. Change text-align: center to text-align: left.

Each change is isolated and reversible — exactly like working with properties in Figma.

What does a CSS rule like `h1 { color: #7C3AED; }` do?
In CSS, what are the three parts of every rule?
If you want to make the heading blue instead of purple, which part of the CSS rule do you change?