JSFiddle - React, Tailwind, and code Playground
by dkrotts
HTML
<!doctype html>
<html ng-app>
<head>
<script src="http://code.angularjs.org/angular-1.0.0rc10.min.js"></script>
</head>
<body>
<div>
<label>Name:</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here">
<h1>Hello, {{yourName}}!</h1>
</div>
</body>
</html>
CSS
body {
margin: 20px;
font-family: sans-serif;
font-size: 12pt;
}
input {
padding: 2px 4px;
font-size: 12pt;
}
h1 {
display: block;
margin: 20px 0;
font-size: 22pt;
}