mirror of
https://github.com/google/blockly.git
synced 2026-01-09 18:10:08 +01:00
53 lines
1.1 KiB
HTML
53 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Blockly Apps</title>
|
|
<style>
|
|
body {
|
|
background-color: #fff;
|
|
font-family: sans-serif;
|
|
margin: 0 10%;
|
|
}
|
|
h1 {
|
|
font-weight: normal;
|
|
font-size: 140%;
|
|
}
|
|
a:hover {
|
|
color: #f00;
|
|
}
|
|
td {
|
|
padding: 1ex;
|
|
}
|
|
img {
|
|
border: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Blockly Apps</h1>
|
|
|
|
<p>Blockly is a graphical programming environment. Below are some sample
|
|
applications that use Blockly.</p>
|
|
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<a href="code/index.html">
|
|
<img src="code/icon.png" height=80 width=100>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<div><a href="code/index.html">Code</a></div>
|
|
<div>Export a Blockly program into JavaScript, Python, Dart or XML.</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p>Blockly is free and open source. To contribute code or translations to
|
|
Blockly, or to use Blockly in your own app, visit
|
|
<a href="https://developers.google.com/blockly/">developers.google.com/blockly</a>.</p>
|
|
|
|
</body>
|
|
</html>
|