-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 1.92 KB
/
index.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Matthew Ellen portfolio</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Pages</h1>
<main>
<section>
<h2 class="itemhead">Generative art showcase</h2>
<p class="itembody">A page of my various pieces of generative art. Including sand piles and ant dances.</p>
<p class="itembody"><a href="generativeArt">LINK</a></p>
</section>
<section>
<h2 class="itemhead">Show your working</h2>
<p class="itembody">A step by step guide to any long multiplication.</p>
<p class="itembody"><a href="showyourworking">LINK</a></p>
</section>
<section>
<h2 class="itemhead">SNAKE</h2>
<p class="itembody">It's the game snake. Tap on the left of the screen to turn clockwise, and right to turn anticlockwise.</p>
<p class="itembody"><a href="snake">LINK</a></p>
</section>
<section>
<h2 class="itemhead">Freecell</h2>
<p class="itembody">My implementation of the solitaire card game.</p>
<p class="itembody">See my writeup about it on <a href="https://dev.to/mellen/free-freecell-4kb2">dev.to</a>.</p>
<p class="itembody"><a href="freecell">LINK</a></p>
</section>
<section>
<h2 class="itemhead">Dot Collector</h2>
<p class="itembody">Work In Progress. It's a game like pacman?</p>
<p class="itembody"><a href="DotCollector">LINK</a></p>
</section>
<section>
<h2 class="itemhead">JSIA examples</h2>
<p class="itembody">Examples of how use the <a href="https://github.com/Mellen/jsia">JSIA</a> library</p>
<p class="itembody"><a href="jsiaExamples">LINK</a></p>
</section>
<section>
<h2 class="itemhead">RJSF</h2>
<p class="itembody"> Work In Progress. Readme page for the <a href="https://github.com/Mellen/rjsf">Reactive JavaScript Framework</a> library, with examples!</p>
<p class="itembody"><a href="rjsf">LINK</a></p>
</section>
</main>
</body>
</html>