diff --git a/SetInnerHTML.md b/SetInnerHTML.md
new file mode 100644
index 0000000..b46dca9
--- /dev/null
+++ b/SetInnerHTML.md
@@ -0,0 +1,8 @@
+```cpp
+void* Crafter::CppDOM::Bindings::SetInnerHTML(void* ptr, const char* html, std::size_t htmlLenght);
+void* Crafter::CppDOM::Bindings::SetInnerHTML(void* ptr, const std::string& html)
+```
+
+Sets the innterHTML property of the javascript object in ``ptr`` to the contents of ``html``
+
+[Mozilla Reference](https://developer.mozilla.org/en-US/docs/Web/API/Document/innerHTML)
\ No newline at end of file