JSFiddle - React, Tailwind, and code Playground

by Edward Tanguay

HTML

<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<div ng-app="app">
    <div ng-controller="mainController">
        <div style="color: {{color}}">{{message}}</div>
        <iframe width="560" height="315" src="https://www.youtube.com/embed/{{videoIdCode}}" frameborder="0" allowfullscreen></iframe>
    </div> 
</div>

JavaScript

angular.module('app', [])
.controller('mainController', function($scope) {
    
    $scope.message = 'nnn';
    $scope.color = 'blue';
    $scope.videoIdCode = 'l153UtpCKEI';
    
});