-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (104 loc) · 4.13 KB
/
index.html
File metadata and controls
107 lines (104 loc) · 4.13 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://s3.amazonaws.com/codecademy-content/projects/bootstrap.min.css">
<link href='https://fonts.googleapis.com/css?family=Merriweather' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="supporting">
<div class="container">
<div class="row">
<div class="col-sm-4">
<a href="http://www.josephslinker.com/blog">
<img src="img/every_last_mile_180.png" width="180" height="180"/>
<h2>Every Last Mile</h2>
<p>
Follow along with our film adventures around the world.
</p>
</a>
</div>
<div class="col-sm-4">
<a href="http://rarecandyapp.strikingly.com">
<img src="img/rare_candy_180.png" width="180" height="180"/>
<h2>Rare Candy</h2>
<p>
Turn your life into a game with characters, classes, level ups, and more.
</p>
</a>
</div>
<div class="col-sm-4">
<a href="http://longshot.strikingly.com">
<img src="img/longshot_180.png" width="180" height="180"/>
<h2>Longshot</h2>
<p>
Spend less time scoring and more time playing disc golf.
</p>
</a>
</div>
</div>
<!-- Second row of icons -->
<div class="row">
<div class="col-sm-4">
<a href="https://www.lucidchart.com/pages/ipad-flowchart-app">
<img src="img/lucidchart_180.png" width="180" height="180"/>
<h2>Lucidchart</h2>
<p>
Create stunning flowcharts, wireframes, mockups, UML diagrams, ER diagrams, and much more!
</p>
</a>
</div>
<div class="col-sm-4">
<a href="http://www.ancestry.com/cs/ancestry-app">
<img src="img/ancestry_180.png" width="180" height="180"/>
<h2>Ancestry.com</h2>
<p>
Discover who you are and where you came from through photos, stories, historical documents, and so much more.
</p>
</a>
</div>
<div class="col-sm-4">
<a href="https://itunes.apple.com/us/app/the-good-mandolin-book/id494624493?mt=8">
<img src="img/mandolin_180.png" width="180" height="180"/>
<h2>Mandolin</h2>
<p>
Simple, clean, and efficient. Quickly Lookup chords and scales in every key.
</p>
</a>
</div>
</div>
<!-- Third row of icons -->
<div class="row">
<div class="col-sm-4">
<a href="/Picomon-Red/">
<img src="img/picomon_180.png" width="180" height="180"/>
<h2>Picomon Red</h2>
<p>
A recreation of the gameboy classic "Pokemon Red" using PICO-8.
</p>
</a>
</div>
<div class="col-sm-4">
<a href="/pico-pong/">
<img src="img/pong_180.png" width="180" height="180"/>
<h2>Pico Pong</h2>
<p>
Learning the PICO-8 API by building "Pong" from the ground up.
</p>
</a>
</div>
<div class="col-sm-4">
<a href="/emerald">
<img src="img/emerald_180.png" width="180" height="180"/>
<h2>Study in Emerald</h2>
<p>
Sherlock Holmes adventure in PICO-8.
</p>
</a>
</div>
</div>
</div>
</div>
</body>
</html>