-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (59 loc) · 2.3 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
69
70
<!doctype html>
<html lang="en">
<head>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="dark" />
<link rel="stylesheet" href="css/pico.min.css" />
<style>
/* Reduce the container width */
.container {
max-width: 800px; /* Adjust the value to your desired width */
}
</style>
<title>Alexander S. Corey</title>
</head>
<body>
<main class="container">
<h1><a style="text-decoration:none;" href="#" class="contrast">Alexander S. Corey</a></h1>
<nav>
<ul>
<li><a href="bio.html">About Me</a></li>
<li><a href="static/AlexCoreyResume.pdf" target="_blank" class="secondary">Resume</a></li>
<li><a href="https://github.com/acoreynews" target="_blank" class="secondary">GitHub</a></li>
<li><a href="https://www.linkedin.com/in/alexander-s-corey" target="_blank" class="secondary">LinkedIn</a></li>
</ul>
</nav>
<article data-theme="dark">
<details open>
<summary><a href="https://statuspage-60h0.onrender.com/" target="_blank" class="contrast">StatusPage (Python/Django)</a></summary>
<p>A StatusPage site for a fictional board game store, built using Python/Django. Inspired by other status page sites such as Atlassian Statuspage.</p>
</details>
</article>
<article data-theme="dark">
<details open>
<summary><a href="Python.html" target="_blank" class="contrast">Class Scores (Python)</a></summary>
<p>A Python program that reads a specifically formatted csv file
for an instructor's student grades and creates a web page
with the scores.</p>
</details>
</article>
<article data-theme="dark">
<details open>
<summary><a href="RubyScrabble.html" target="_blank" class="contrast">Scrabble word score (Ruby)</a></summary>
<p>A Ruby program that calculates a Scrabble word score.</p>
</details>
</article>
<article data-theme="dark">
<details open>
<summary><a href="WeatherCalculatorCPP.html" target="_blank" class="contrast">Weather Calculator (C++)</a></summary>
<p>A C++ program that prompts the user to input three weather-related values and outputs the wind chill factor and heat index.</p>
</details>
</article>
</main>
</body>
</html>