Designer/Developer Portland R&D Center – @patrickarlt
Get all your ideas out as fast as possible
Start building in a browser using HTML/CSS/JS
Using a framework hugely accelerates the speed at which you can build a prototype
<div ng-controller="TodoCtrl"> <span>{{remaining()}} of {{todos.length}} remaining</span> [ <a href="" ng-click="archive()">archive</a> ] <ul class="unstyled"> <li ng-repeat="todo in todos"> <input type="checkbox" ng-model="todo.done"> <span class="done-{{todo.done}}">{{todo.text}}</span> </li> </ul> <form ng-submit="addTodo()"> <input type="text" ng-model="todoText" size="30" placeholder="add new todo here"> <input class="btn-primary" type="submit" value="add"> </form> </div>
# This is markdown Its pretty dang simple, it even does things like [Links](http://esri.com). * It * Also * Does * Lists ![and images](http://myimage.png)
http://patrickarlt.github.io/rapid-prototyping-in-browser/ / @patrickarlt