-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 1.32 KB
/
index.html
File metadata and controls
41 lines (36 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<title>Projects</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1><a class="glowy" href="./index.html">Projects</a></h1>
<article>
<div class="inline">
<h2>
<a class="glowy" href="connectfour/index.html" target="_blank">Connect Four</a>
</h2>
<a href="connectfour/index.html" target="_blank">
<img class="debug" src="images/connectfour.jpg" alt="connect four">
</a>
<p class="caption debug">Single-page app built using JavaScript, CSS & HTML.<br> </p>
</div>
<div class="inline">
<h2>
<a class="glowy" href="responsive/index.html" target="_blank">Responsive CSS</a>
</h2>
<a href="responsive/index.html" target="_blank">
<img class="debug" src="images/responsive.jpg" alt="responsive design">
</a>
<p class="caption debug">Recall the heady days of the Sanders campaign circa Spring '16, with this page demonstrating responsive CSS design.</p>
</div>
</article>
<aside>
<p><a href="https://github.com/edmechem/edmechem.github.io/blob/master/Modifying_Rails_Blog_to_run_on_Heroku.md#readme" target="_blank">Notes</a> on modifying a simple Rails app from SQLite to PostgreSQL, to deploy to Heroku.</p>
</aside>
<footer>
<p>©2016, <a href="mailto:ed@mechem.org">Ed Mechem</a></p>
</footer>
</body>
</html>