Module 3

Website design & development

Quick-reference revision notes for parents.

3.1 Introduction to web development & HTML

HTML (HyperText Markup Language) describes the structure of a web page using tags.

<!DOCTYPE html>
<html>
  <head>
    <title>My page</title>
  </head>
  <body>
    <h1>Hello</h1>
    <p>Welcome to my site.</p>
  </body>
</html>

3.2 HTML and W3C standards

The W3C (World Wide Web Consortium) sets the standards browsers follow. Following them means your page works the same in Chrome, Safari, Firefox, etc.

Common tags

TagMeaning
<h1><h6>Headings (h1 most important)
<p>Paragraph
<a>Link
<img>Image (self-closing)
<ul> / <ol> / <li>Unordered / ordered list, list item
<div> / <span>Generic block / inline containers

3.3 Styling basics with CSS

CSS (Cascading Style Sheets) controls how the page looks.

h1 {
  color: navy;
  text-align: center;
}

p {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

The box model

Every element is a rectangular box made of:

3.4 Navigation through hyperlinks

<a href="about.html">About us</a>
<a href="https://example.com" target="_blank">Open in new tab</a>

3.5 Images and media

<img src="cat.jpg" alt="A cat sitting on a sofa" width="400">
<video src="clip.mp4" controls></video>

3.6 Styling for readability and engagement

Quick reference

← Back All modules Next → Practice questions