A downloadable project

This template is free. If you like it, consider donating.


# Simple HTML Template

A clean, minimal, and responsive HTML landing page template.  

Built using **only HTML and CSS**, with no external dependencies.

---

## Features

- Clean and readable HTML structure

- Modern dark/light design (easy to adapt to any color scheme)

- Fully responsive (mobile-first)

- No external libraries or frameworks

---

## Project Structure

.

├── index.html

├── dark-style.css

├── README.md

└── assets/

---

## How to Use

1. Open `index.html` in your browser to preview the template.

2. Edit the content directly in `index.html`:

   - Headings (`<h1>`, `<h2>`, `<h3>`)

   - Paragraphs (`<p>`)

   - Button text and links

---

## Customization

This template includes dark and light themes.  

To switch between them, open `index.html` and change the CSS link:

```html

<!-- Dark theme -->

<link rel="stylesheet" href="dark-style.css" />

<!-- Light theme -->

<link rel="stylesheet" href="light-style.css" />

### Change the Primary Color

In `dark-style.css` (or `light-style.css`), look for:

```css

.btn-primary {

  background-color: #3b82f6;

}

Replace the color with your brand color.

You may also want to update:

.btn-secondary {

  border: 1px solid #3b82f6;

  color: #3b82f6;

}

.btn-secondary:hover {

  background-color: #3b82f6;

}

.btn-primary:hover {

  background-color: #2563eb; /* slightly darker or lighter than primary */

  transform: translateY(-2px);

}

License

You are free to:

Use this template for personal projects

Use this template for commercial projects

Modify the code as you like

You are not allowed to:

Resell or redistribute this template as-is

Claim this template as your own original work

Attribution is not required, but appreciated.

Published 2 days ago
StatusReleased
CategoryOther
AuthorSimple HTML Templates

Download

Download
Simple HTML Template.rar 4.7 kB

Leave a comment

Log in with itch.io to leave a comment.