diff --git a/docs/faq.md b/docs/faq.md
index 3945bdb9..b4af0c32 100644
--- a/docs/faq.md
+++ b/docs/faq.md
@@ -1,29 +1,58 @@
-# How do I include Readme Typing SVG in my Readme?
+# FAQ
-Markdown files on GitHub support embedded images using Markdown or HTML.
+## How do I include Readme Typing SVG in my Readme?
-Markdown:
+Markdown files on GitHub support embedded images using Markdown or HTML. You can customize your SVG on the [demo site](https://readme-typing-svg.herokuapp.com/demo/) and use the image source in either of the following ways:
-```html
+### Markdown
+
+```md
[](https://git.io/typing-svg)
```
-HTML:
+### HTML
```html
```
-# FAQs
+## The text is getting cut off at the end, how do I fix it?
-## How do I center the image on the page?
+The text rendered within the SVG can be any variable width, therefore you must specify the width manually to ensure the text will fit.
-We can do so by *using the HTML version*, and then wrapping it by the HTML attribute of `align="center"`.
+The `width` parameter in the URL should be increased such that the full width of the text is displayed properly.
-You can do so by:
+```md
+https://readme-typing-svg.herokuapp.com/?lines=Your+Long+Message+With+A+Long+Width&width=460
+```
+
+## How do I center the image on the page?
+
+To center align images, you must use the HTML syntax and wrap it in an element with the HTML attribute `align="center"`.
```html