diff --git a/README.md b/README.md
index 6d33c77..38670ee 100644
--- a/README.md
+++ b/README.md
@@ -22,6 +22,9 @@ The result is a reactive UI on property changes. [View on CodePen ↗](https://c
1. [Main Exports](#main-exports)
1. [Utilities](#utilities)
1. [Usage](#usage)
+1. [Examples](#Examples)
+ 1. [To-Do App](#1-to-do-app)
+ 1. [Single HTML file](#2-single-html-file-example)
1. [`template` vs `render()`](#template-vs-render)
1. [Prop access](#prop-access)
1. [Alternatives](#alternatives)
@@ -33,9 +36,6 @@ The result is a reactive UI on property changes. [View on CodePen ↗](https://c
1. [`afterViewInit`](#afterviewinit) - after the view is first initialized
1. [`onDestroy`](#ondestroy) - the component is disconnected from the DOM
1. [`onChanges`](#onchanges) - every time an attribute value changes
-1. [Examples](#Examples)
- 1. [To-Do App](#1-to-do-app)
- 1. [Single HTML file](#2-single-html-file-example)
1. [Library Size](#library-size)
## Project Status
@@ -100,7 +100,6 @@ import { createElement } from "web-component-base/utils/create-element.js";
```
-
## Usage
In your component class:
@@ -124,7 +123,6 @@ class HelloWorld extends WebComponent {
customElements.define('hello-world', HelloWorld);
```
-
In your HTML page:
```html
@@ -147,6 +145,53 @@ The result is a reactive UI that updates on attribute changes:
+## Examples
+
+### 1. To-Do App
+
+A simple app that allows adding / completing tasks:
+[View on CodePen ↗](https://codepen.io/ayoayco-the-styleful/pen/GRegyVe?editors=1010)
+
+
+
+### 2. Single HTML file Example
+
+Here is an example of using a custom element in a single .html file. [View on CodePen ↗](https://codepen.io/ayoayco-the-styleful/pen/ZEwoNOz?editors=1010)
+
+```html
+
+
+