mirror of
https://github.com/google/blockly.git
synced 2026-01-23 08:40:10 +01:00
46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Blockly Apps</title>
|
|
<style>
|
|
body {
|
|
background-color: #fff;
|
|
font-family: sans-serif;
|
|
}
|
|
h1 {
|
|
font-weight: normal;
|
|
font-size: 140%;
|
|
}
|
|
a:hover {
|
|
color: #f00;
|
|
}
|
|
dt {
|
|
margin-top: 2ex;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Blockly Apps</h1>
|
|
|
|
<p>Below are some sample applications that use <a href="http://blockly.googlecode.com/">Blockly</a>.</p>
|
|
|
|
<dl>
|
|
<dt><a href="puzzle/index.html">Puzzle</a></dt>
|
|
<dd>Learn to use Blockly's interface.</dd>
|
|
<dt><a href="maze/index.html">Maze</a></dt>
|
|
<dd>Use Blockly to solve a maze.</dd>
|
|
<dt><a href="turtle/index.html">Turtle Graphics</a></dt>
|
|
<dd>Use Blockly to draw.</dd>
|
|
<dt><a href="graph/index.html">Graphing Calculator</a></dt>
|
|
<dd>Plot functions with Blockly.</dd>
|
|
<dt><a href="code/index.html">Code</a></dt>
|
|
<dd>Export a Blockly program into JavaScript, Python or XML.</dd>
|
|
<dt><a href="plane/index.html">Plane seat calculator</a></dt>
|
|
<dd>Solve a math problem with one or two variables.</dd>
|
|
<dt><a href="blockfactory/index.html">Block Factory</a></dt>
|
|
<dd>Build custom blocks using Blockly.</dd>
|
|
</dl>
|
|
</body>
|
|
</html>
|