export class HelloComponent {
@Input() name: string;
html1 =
'<html><head><style> .html1_h2 {color:red;}</style></head><body><h2 class="html1_h2">Inner HTML1 in red</h2></body></html>';
html2 =
'<html><head><style> .html2_h2 {color:blue;}</style></head><body><h2 class="html2_h2">Inner HTML2 in blue</h2></body></html>';
}