StrizzyG.com

Introduction

This course will teach you the basics of HTML and CSS. You will learn to build a simple website from scratch.

HTML Lessons

Basic HTML Structure

HTML is the backbone of any webpage. It is used to structure content.

<!DOCTYPE html>
<html>
<head>
    <title>My First Website</title>
</head>
<body>
    <h1>Welcome!</h1>
    <p>This is a paragraph.</p>
</body>
</html>

CSS Lessons

Basic CSS

CSS is used to style and layout your HTML page.

body {
    font-family: Arial, sans-serif;
}

h1 {
    color: blue;
}

p {
    font-size: 16px;
}