129 lines
No EOL
3.2 KiB
HTML
Executable file
129 lines
No EOL
3.2 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">Programs and apps that I have coded and random ideas that I fabricated.</h2>
|
|
|
|
<a href="../../" class="btn">Home</a>
|
|
</header>
|
|
|
|
<main id="content" class="main-content" role="main">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Projects</th>
|
|
<th>Description</th>
|
|
<th>Link</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<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/">./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/">./nsc-web/</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
<br>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Other projects</th>
|
|
<th>Description</th>
|
|
<th>Link (external)</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>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>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
<br>
|
|
|
|
<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>
|
|
|
|
<!-- <tr>
|
|
<td>Project</td>
|
|
<td>
|
|
Description
|
|
</td>
|
|
<td>
|
|
<a href="#">Link</a>
|
|
</td>
|
|
</tr> -->
|
|
|
|
<footer class="site-footer">
|
|
You have reached the end of the page. (ノ◕ヮ◕)ノ*:・゚✧
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
|
|
</html> |