arrayinamatrix.xyz/index/projects/index.html
array-in-a-matrix dfed7b53b0 Empty commit
2021-09-24 22:12:02 -04:00

71 lines
1.9 KiB
HTML
Executable file

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Projects</title>
<link rel="stylesheet" href="/style/style.css" />
</head>
<body>
<header class="page-header" role="banner">
<h1 class="project-name">My Projects</h1>
<h2 class="project-tagline">Displaying thanks to the GitHub API.</h2>
<a href="/" class="btn">Home</a>
</header>
<main id="content" class="main-content" role="main">
<table>
<thead>
<tr>
<th>Github projects</th>
<th>Description</th>
<th>GitHub link</th>
<th>Language</th>
</tr>
</thead>
<tbody id="userRepo">
<script src="githubapi.js"></script>
</tbody>
</table>
<table>
<thead>
<tr>
<th>Other projects</th>
<th>Description</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<tr>
<td>Firefox black & red triangle theme</td>
<td>
A red and black theme for firefox tabs.
</td>
<td>
<a
href="https://addons.mozilla.org/en-US/firefox/addon/black-red-triangle-theme"
>https://addons.mozilla.org/en-US/firefox/addon/black-red-triangle-theme/</a
>
</td>
</tr>
<tr>
<td>Dark New Roman</td>
<td>
A custom serif font based off of Times New Roman.
</td>
<td>
<a
href="/res/DarkNewRoman.ttf"
>Download font (truetype)</a
>
</td>
</tr>
</tbody>
</table>
<footer class="site-footer">
</footer>
</main>
</body>
</html>