diff --git a/projects/common/element-components/compound-elements/cloze.component.ts b/projects/common/element-components/compound-elements/cloze.component.ts
index e6892159901d803813d4c0f2acbdf11590ca1c37..d4369e5dcb55defb1e167a36d547fa3602349418 100644
--- a/projects/common/element-components/compound-elements/cloze.component.ts
+++ b/projects/common/element-components/compound-elements/cloze.component.ts
@@ -19,10 +19,32 @@ import { FormElementComponent } from '../../form-element-component.directive';
        [style.text-decoration]="elementModel.underline ? 'underline' : ''">
       <ng-container *ngFor="let part of paragraph; let j = index">
 
-        <span *ngIf="part.type === 'text'"
-             [innerHTML]="part.value">
+        <span *ngIf="part.type === 'p'"
+             [innerHTML]="part.value"
+             [style]="part.style">
         </span>
 
+        <h1 *ngIf="part.type === 'h1'"
+            [innerHTML]="part.value"
+            [style.display]="'inline'"
+            [style]="part.style">
+        </h1>
+        <h2 *ngIf="part.type === 'h2'"
+            [innerHTML]="part.value"
+            [style.display]="'inline'"
+            [style]="part.style">
+        </h2>
+        <h3 *ngIf="part.type === 'h3'"
+            [innerHTML]="part.value"
+            [style.display]="'inline'"
+            [style]="part.style">
+        </h3>
+        <h4 *ngIf="part.type === 'h4'"
+            [innerHTML]="part.value"
+            [style.display]="'inline'"
+            [style]="part.style">
+        </h4>
+
         <span (click)="allowClickThrough || selectElement($any(part.value), $event)">
           <app-dropdown *ngIf="part.type === 'dropdown'" #drowdownComponent
                         [parentForm]="parentForm"
diff --git a/projects/common/interfaces/UIElementInterfaces.ts b/projects/common/interfaces/UIElementInterfaces.ts
index ca75f9a068601dba3e0b381483d811ade1e49841..aee4e675d04432d3215772c9897c3eb7f4e86f11 100644
--- a/projects/common/interfaces/UIElementInterfaces.ts
+++ b/projects/common/interfaces/UIElementInterfaces.ts
@@ -49,4 +49,5 @@ export interface LikertRow {
 export interface ClozePart {
   type: string;
   value: string | UIElement;
+  style?: string;
 }
diff --git a/projects/common/models/compound-elements/cloze-element.ts b/projects/common/models/compound-elements/cloze-element.ts
index 26d530a0a93d58c9cf676343729367305062c326..34225caa9cb664613d49efa1763b2f81df7ce2d1 100644
--- a/projects/common/models/compound-elements/cloze-element.ts
+++ b/projects/common/models/compound-elements/cloze-element.ts
@@ -11,12 +11,10 @@ import { DropdownElement } from '../dropdown-element';
 import { DropListElement } from './drop-list';
 import { initFontElement } from '../../util/unit-interface-initializer';
 
+// TODO styles like em dont continue after inserted components
+
 export class ClozeElement extends CompoundElement implements FontElement {
-  text: string = '<p>Lorem ipsum dolor \\z sit amet \\i\n' +
-    '\n' +
-    'Lorem ipsum dolor \\z sit amet \\i\n' +
-    '\n' +
-    'Lorem ipsum dolor \\z sit amet \\i</p>';
+  text: string = '<p>Lorem ipsum dolor \\z</p>';
 
   parts: ClozePart[][] = [];
   childElements: InputElement[] = [];
@@ -46,29 +44,33 @@ export class ClozeElement extends CompoundElement implements FontElement {
   }
 
   private createParts(htmlText: string): void {
-    const paragraphList = ClozeElement.readElementArray(htmlText);
+    const elementList = ClozeElement.readElementArray(htmlText);
 
     this.parts = [];
-    paragraphList.forEach((p, i) => {
-      this.parseParagraphs(p.innerText, i);
+    elementList.forEach((element: HTMLParagraphElement | HTMLHeadingElement, i: number) => {
+      this.parseParagraphs(element, i);
     });
     // console.log('PARTS:', this.parts);
   }
 
-  private static readElementArray(htmlText: string): HTMLParagraphElement[] {
+  private static readElementArray(htmlText: string): (HTMLParagraphElement | HTMLHeadingElement)[] {
     const el = document.createElement('html');
     el.innerHTML = htmlText;
-    return Array.from(el.getElementsByTagName('p'));
+    return Array.from(el.children[1].children) as (HTMLParagraphElement | HTMLHeadingElement)[];
   }
 
-  private parseParagraphs(p: string, partIndex: number): void {
+  private parseParagraphs(element: HTMLParagraphElement | HTMLHeadingElement, partIndex: number): void {
     this.parts[partIndex] = []; // init array to be able to push
-    let [nextSpecialElementIndex, nextElementType] = ClozeElement.getNextSpecialElement(p);
+    let [nextSpecialElementIndex, nextElementType] = ClozeElement.getNextSpecialElement(element.innerHTML);
     let indexOffset = 0;
 
     while (nextSpecialElementIndex !== -1) {
       nextSpecialElementIndex += indexOffset;
-      this.parts[partIndex].push({ type: 'text', value: p.substring(indexOffset, nextSpecialElementIndex) });
+      this.parts[partIndex].push({
+        type: element.localName,
+        value: element.innerHTML.substring(indexOffset, nextSpecialElementIndex),
+        style: element.style.cssText
+      });
 
       const newElement = ClozeElement.createElement(nextElementType);
       this.childElements.push(newElement);
@@ -76,9 +78,13 @@ export class ClozeElement extends CompoundElement implements FontElement {
 
       indexOffset = nextSpecialElementIndex + 2; // + 2 to get rid of the marker, i.e. '\b'
       [nextSpecialElementIndex, nextElementType] =
-        ClozeElement.getNextSpecialElement(p.substring(indexOffset));
+        ClozeElement.getNextSpecialElement(element.innerHTML.substring(indexOffset));
     }
-    this.parts[partIndex].push({ type: 'text', value: p.substring(indexOffset) });
+    this.parts[partIndex].push({
+      type: element.localName,
+      value: element.innerHTML.substring(indexOffset),
+      style: element.style.cssText
+    });
   }
 
   private static getNextSpecialElement(p: string): [number, string] {