```html Getting Started – Knowledge Base

Knowledge Base

Getting Started

Welcome to the Getting Started guide! This article will walk you through the basics of setting up your environment, creating your first project, and understanding the core concepts.

Table of Contents

1. Prerequisites

Before you begin, make sure you have the following installed:

2. Setup

Clone the starter repository and install dependencies.

git clone https://github.com/example/starter.git
cd starter
npm install

3. Your First Project

Create a simple index.html file and serve it with a local server.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Hello World</title>
</head>
<body>
    <h1>Hello, World!</h1>
</body>
</html>

4. Next Steps

Explore the following topics to deepen your knowledge:

```