-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 2.4 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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Alden's Site</title>
<link rel="stylesheet" type="text/css" href="thoughts/style.css">
<!-- <link rel="stylesheet" type="text/css" href="thoughts/desktop.css" media="screen and (min-width: 600px)"> -->
<link rel="stylesheet" type="text/css" href="thoughts/desktop.css">
<link rel="stylesheet" type="text/css" href="thoughts/mobile.css">
<!-- <link rel="stylesheet" type="text/css" href="thoughts/mobile.css" media="screen and (max-width: 600px)"> -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="title"><h1>Alden's Site</h1></div>
<h2 class="right"><a class="main" href="/contact-me">Contact</a></h2>
<h2 class="right"><a class="main" href="/about-me">About</a></h2>
</div>
<hr>
<div class="content">
<h3 id="about"><a href="/about-me">About me</a></h3>
<h3>My projects</h3>
<ul>
<li><a href="/UnitedWaydle">United Waydle</a> – a Wordle clone for the United Way of Greater Charlottesville</li>
<li><a href="/MovingUp">Moving Up</a> – weekly schedule and results for the AP top 25 (during NCAA Men's Basketball season only)</li>
<!-- <li><a href="/SongStart">SongStart</a> – a game where you try to guess songs based on their intros</li> -->
<li><a href="/Buses">Bus Router</a> – a navigation system for Charlottesville buses (both University and City)</li>
</ul>
<!-- <h3>Programming thoughts</h3>
<ul>
<li><a href="/thoughts/example">Programming Example</a></li>
</ul> -->
<h3>Political thoughts</h3>
<ul>
<li><a href="/thoughts/supreme-courts">State Supreme Courts</a></li>
<!-- <li><a href="/thoughts/senate-class-one">Senate Class 1</a></li> -->
</ul>
<h3>Partially complete projects</h3>
<ul>
<li><a href="/Bezier">Bezier curve visualizer</a></li>
<li><a href="/Wordle">Wordle Solver</a></li>
<li><a href="/Cups">Cup problem simulator</a></li>
</ul>
</div>
</body>
</html>