-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (87 loc) · 2.1 KB
/
index.html
File metadata and controls
88 lines (87 loc) · 2.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Jeff Hemsley – My AI Web Apps</title>
<style>
body {
font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
background: #f9fafb;
color: #111827;
}
header {
background: #2563eb;
color: white;
padding: 1rem;
text-align: center;
}
main {
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
}
h1 {
font-size: 1.8rem;
margin-bottom: 0.25rem;
}
p {
margin-top: 0;
font-size: 1rem;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 1rem 0;
}
a {
display: block;
padding: 1rem;
border-radius: 0.5rem;
background: white;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
text-decoration: none;
color: #2563eb;
font-weight: 600;
transition: background 0.2s, transform 0.2s;
}
a:hover {
background: #eff6ff;
transform: translateY(-2px);
}
footer {
margin-top: 3rem;
text-align: center;
font-size: 0.9rem;
color: #6b7280;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Page</h1>
<p>AI-powered apps I’ve built</p>
</header>
<main>
<ul>
<li>
<a href="BipartiteNetworkBuilder_v7.html">Bipartite Network Builder</a>
</li>
<li>
<a href="InteractiveUndergradProgramCourse_v8.html">iSchool Program–Course Network</a>
</li>
<li>
<a href="iSchoolResearchApp_v2.html">iSchool Research Network</a>
</li>
<!-- Add more app links below as needed -->
</ul>
</main>
<footer>
© 2025 Jeff Hemsley
</footer>
</body>
</html>