108 lines
No EOL
3 KiB
HTML
Executable file
108 lines
No EOL
3 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" />
|
|
<link rel="icon" type="image/x-icon" href="/res/site/icons/favicon.ico">
|
|
</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>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/downloads/DarkNewRoman.ttf">Download font (truetype 28.9 KiB)</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>IP address gabber</td>
|
|
<td>
|
|
Grabs your IPv4 (Internet Protocol) Address.
|
|
</td>
|
|
<td>
|
|
<a href="./ip-grabber/">https://arrayinamatrix.xyz/index/projects/ip-grabber/</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Number System Converter (web)</td>
|
|
<td>
|
|
Converts decimal numbers into other bases!
|
|
</td>
|
|
<td>
|
|
<a href="./nsc-web/">https://arrayinamatrix.xyz/index/projects/nsc-web/</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>RGB YouTube Progress Bar</td>
|
|
<td>
|
|
Makes the YouTube progress bar cycle through different RGB colors.
|
|
</td>
|
|
<td>
|
|
<a href="https://addons.mozilla.org/addon/rgb-youtube-progress-bar/">https://addons.mozilla.org/addon/rgb-youtube-progress-bar/</a>
|
|
</td>
|
|
</tr>
|
|
<!-- <tr>
|
|
<td>Other Projects</td>
|
|
<td>
|
|
Description
|
|
</td>
|
|
<td>
|
|
<a href="#">Link</a>
|
|
</td>
|
|
</tr> -->
|
|
</tbody>
|
|
</table>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Github projects</th>
|
|
<th>Description</th>
|
|
<th>GitHub link</th>
|
|
<th>Language</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="userRepo">
|
|
<script src="./script/script.js"></script>
|
|
</tbody>
|
|
</table>
|
|
|
|
<footer class="site-footer">
|
|
You have reached the end of the page. (ノ◕ヮ◕)ノ*:・゚✧
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
|
|
</html> |