diff --git a/README.md b/README.md
new file mode 100644
index 0000000..35ae1de
--- /dev/null
+++ b/README.md
@@ -0,0 +1,107 @@
+# react-youtube-lite
+
+A responsive react component to render YouTube videos in a lazyload mode to get a high speed load website.
+
+Demo: https://codesandbox.io/s/react-youtube-lite-uikk9n?file=/src/App.js
+
+## 📊 Comparison
+
+| YouTube iframe | `react-youtube-lite` |
+| ------------------------------------------------------------------------- | -------------------------------------------------------------------------- |
+|  |  |
+|  |  |
+
+
+## 👨💻 Installation
+
+npm:
+
+```bash
+npm add react-youtube-lite
+```
+
+yarn:
+
+```bash
+yarn add react-youtube-lite
+```
+
+pnpm:
+
+```bash
+pnpm add react-youtube-lite
+```
+
+## 📚 Usage
+
+```tsx
+import { ReactYouTubeLite } from 'react-youtube-lite';
+
+// Full URL
+const App = () => {
+ return (
+
+ )
+}
+
+// Short URL
+const App = () => {
+ return (
+
+ )
+}
+
+// ID
+const App = () => {
+ return (
+
+ )
+}
+```
+
+## 🎨 Use your own styles
+
+Since with use Stitches to style the component you can make use of any of the properties that already supported by them.
+
+
+
+This only apply to the main container, if you want to override styles for the iframe element you can do it like this 👇
+
+
+
+
+
+## 📝 Props
+
+- `url`: YouTube video URL or ID
+- `aspectRatio`: Aspect ratio of the video, you can pass any ratio using numbers. Default is `16/9`.
+- `css`: We use Stitches to style the component, you can pass your own CSS values.
+- `customThumbnail`: Custom thumbnail URL instead of the default one.
+- `iframeProps`: Props to pass to the `iframe` element.
+- `noCookie`: Connect to YouTube via the Privacy-Enhanced Mode. Default is `true`.
+- `playerParameters`: Parameters to pass to the YouTube player. Full list of parameters can be found [here](https://developers.google.com/youtube/player_parameters#Parameters).
+- `playlist`: If the video URL contains a playlist.
+- `poster`: The different quality to show the poster. Default is `hqdefault`.
+- `title`: Is used for a11y and we must always provide a title. Default is `React YouTube Lite`.
+
+Also you can pass any other props since it will render a `div` element.
+
+
+
+## 🤝 Contributing
+
+Contributions, issues and feature requests are welcome!
+Feel free to check [issues page](https://github.com/danestves/react-youtube-lite/issues). You can also take a look at the [contributing guide](https://github.com/danestves/react-youtube-lite/blob/main/CONTRIBUTING.md).
+
+## License
+
+[MIT License](LICENSE) Copyright (c) 2020 [Daniel Esteves](https://danestves.com/).