diff --git a/README.md b/README.md index e69de29..ae3b237 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,12 @@ +```html +
+

Headline

+ +
+``` + +```js +let content = document.getElementById('content') +let dynamicValue = document.createTextNode("Dynamic content value") +content.appendChild(dynamicValue) +``` \ No newline at end of file