forked from alexyoung/turing.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturing.html
More file actions
23 lines (23 loc) · 725 Bytes
/
turing.html
File metadata and controls
23 lines (23 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>DailyJS's Framework: turing.js Playground</title>
<script src="build/turing.js" type="text/javascript"></script>
<style>
#box {
width: 100px;
height: 100px;
background-color: red;
}
</style>
</head>
<body>
<h1>Turing</h1>
<p>Open your browser's debug console and play around with <code>turing()</code></p>
<p>The <code>$t()</code> alias is also available.</p>
<h2>Elements</h2>
<div id="box" style=""></div>
</body>
</html>