-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (61 loc) · 1.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<!--
Andrew Iovanna
awiovanna
Main page for all projects for CS 4241: Webware
-->
<html>
<head>
<link href="css.css" rel="stylesheet" type="text/css"/>
<title> CS 4241: Webware </title>
</head>
<style>
h1 {
height: 30px;
max-width: inherit;
}
h2 {
max-width: inherit;
}
</style>
<!-- Black bar across top for projects-->
<body style="margin: 0 0 0 0;">
<div class="header">
CS 4241: Webware
</div>
<div class="main-content">
<a href="hw1/index.html">
<h1>
Project 1
</h1>
<h2>
Static webpages
</h2>
</a>
<a href="hw2/index.html">
<h1>
Project 2
</h1>
<h2>
Javascript Number Guessing
</h2>
</a>
<a href="http://shrouded-woodland-7657.herokuapp.com/">
<h1>
Project 3
</h1>
<h2>
AJAX / Ruby Number Guessing
</h2>
</a>
<a href="http://awiovannawebwarefour.herokuapp.com/">
<h1>
Project 4
</h1>
<h2>
PostgreSQL and Cookies
</h2>
</a>
</div>
</body>
</html>