Angular: Empty Fiddle
http://angularjs.org/
by Ali Adravi
HTML
<div ng-controller="appCtrl">
<div ng-bind-html="url"></div>
</div>
JavaScript
var myApp = angular.module('myApp', []);
myApp.controller('appCtrl', function ($scope, $sce) {
$scope.url = $sce.trustAsHtml(html);
});
var html = '<div style="height:40px;">hi</div><div style="height:40px;">How</div><div style="height:40px;">are you</div>';