-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.52 KB
/
index.html
File metadata and controls
31 lines (30 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<title>Billy</title>
<script type="text/javascript" src="assets/processing.js"></script>
<script src="http://use.edgefonts.net/source-code-pro:n2.js"></script>
<link type="text/css" rel="stylesheet" href="assets/style.css"/>
<link rel="shortcut icon" href="http://www.gravatar.com/avatar/3b964d84fcfbcdf59089c8bd7309f0b7.ico" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div id="terminal"></div>
<div class="button b"><i class="fa fa-chevron-up"></i></div>
<div class="info b"><i class="fa fa-info-circle"></i></div>
<div class="save b"><i class="fa fa-camera-retro"></i></div>
<div class="infobox">
Welcome to Billy!<br /><br />
Billy is a tiny, visually-oriented programming language for children.<br />
The goal of the project is to create a very small, easy-to-understand
set of features which can combine to create complex and fun interactions. <br /><br />
<a href="http://github.com/simonlast/billy">source & documentation</a><br />
<a href="http://simonlast.org">more projects</a>
</div>
<canvas id="langcanvas"></canvas>
<script type="text/javascript" src="assets/app.js"></script>
<script type="text/javascript" src="assets/jquery.terminal-min.js"></script>
<script type="text/javascript" src="assets/parser.js"></script>
</body>
</html>