Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added main/images/ffaa_64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 11 additions & 2 deletions main/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@ h3 {
font-size: 1.2em;
}
img {
vertical-align: bottom;
vertical-align: middle;
}
a {
display: inline-block;
text-decoration: none;
}
a span {
text-decoration: underline;
}
a.link {
text-decoration: underline;
}
address {
margin: -0.5em;
Expand All @@ -14,7 +24,6 @@ address h2 {
}
address a {
font-size: 1.2em;
display: inline-block;
margin: 0.42em;
}
address img, address picture {
Expand Down
42 changes: 28 additions & 14 deletions main/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,22 @@
<h1>Daniel Herr Software</h1>
</header>
<main>
<h2>Web Sites</h2>
<section>
<h3>
<a href="https://ffapps.danielherr.software">
<img src="images/ffaa_64.png" alt="" width="32" height="32">
<span>FF Apps Archive</span>
</a>
</h3>
<p>FFAA contains thousands of apps from the defunct Firefox Marketplace.</p>
</section>
<h2>Web Extensions</h2>
<section>
<h3>
<a href="Memory_Monitor">
<img src="images/memory_monitor_32.png" alt="" width="32" height="32">
Memory Monitor
<span>Memory Monitor</span>
</a>
</h3>
<p>Displays RAM usage information.</p>
Expand All @@ -30,7 +40,7 @@ <h3>
<h3>
<a href="Processor_Monitor">
<img src="images/processor_monitor_32.png" alt="" width="32" height="32">
Processor Monitor
<span>Processor Monitor</span>
</a>
</h3>
<p>Displays CPU usage information.</p>
Expand All @@ -39,7 +49,7 @@ <h3>
<h3>
<a href="Bookmark_Topper">
<img src="images/bookmark_topper_32.png" alt="" width="32" height="32">
Bookmark Topper
<span>Bookmark Topper</span>
</a>
</h3>
<p>Moves newly created bookmarks to the top of their folder.</p>
Expand All @@ -48,7 +58,7 @@ <h3>
<h3>
<a href="Navigation_Confirmation">
<img src="images/navigation_confirmation_32.png" alt="" width="32" height="32">
Navigation Confirmation
<span>Navigation Confirmation</span>
</a>
</h3>
<p>Asks for confirmation before closing, reloading, or navigating to another page.</p>
Expand All @@ -57,7 +67,7 @@ <h3>
<h3>
<a href="Link_Controller">
<img src="images/link_controller_32.png" alt="" width="32" height="32">
Link Controller
<span>Link Controller</span>
</a>
</h3>
<p>Controls whether links open in the current tab or in a new tab.</p>
Expand All @@ -66,45 +76,49 @@ <h3>
<h3>
<a href="Single_Tab_Zoom">
<img src="images/single_tab_zoom_32.png" alt="" width="32" height="32">
Single Tab Zoom
<span>Single Tab Zoom</span>
</a>
</h3>
<p>Applies zooming to the current tab instead of the entire site.</p>
</section>
</main>
<address>
<h2>Profiles and Contact</h2>
<a href="Support">Support</a>
<a href="Support" class="link">Support</a>
<a href="https://github.com/DanielHerr">
<picture>
<source srcset="https://github.githubassets.com/favicons/favicon.svg" type="image/svg+xml">
<img src="https://github.githubassets.com/favicons/favicon.png" alt="" width="16" height="16">
</picture>
GitHub
<span>GitHub</span>
</a>
<a href="https://www.reddit.com/r/Daniel_Herr_Software/">
<img src="https://www.redditstatic.com/desktop2x/img/favicon/favicon-32x32.png" alt="" width="16" height="16">
Reddit
<span>Reddit</span>
</a>
<a href="https://groups.google.com/g/daniel_herr_software">
<img src="https://www.gstatic.com/images/branding/product/1x/groups_32dp.png" alt="" width="16" height="16">
Google Groups
<span>Google Groups</span>
</a>
<a href="https://www.youtube.com/@DanielHerrSoftware">
<img src="https://www.youtube.com/favicon.ico" alt="" width="16" height="16">
YouTube
<span>YouTube</span>
</a>
<a href="https://www.linkedin.com/in/daniel-herr">
<img src="https://www.linkedin.com/favicon.ico" alt="" width="16" height="16">
LinkedIn
<span>LinkedIn</span>
</a>
<a href="https://x.com/Daniel_Herr_SW">
<img src="https://x.com/favicon.ico" alt="" width="16" height="16">
X (Twitter)
<span>X (Twitter)</span>
</a>
<a href="https://stackoverflow.com/users/3591628/daniel-herr">
<img src="https://stackoverflow.com/favicon.ico" alt="" width="16" height="16">
Stack Overflow
<span>Stack Overflow</span>
</a>
<a href="https://t.me/Daniel_Herr">
<img src="https://telegram.org/img/favicon-32x32.png" alt="" width="16" height="16">
<span>Telegram</span>
</a>
Comment on lines +119 to 122

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This new external link is missing the rel="noopener noreferrer" attribute for security. It's also a good practice to open external links in a new tab using target="_blank".

Suggested change
<a href="https://t.me/Daniel_Herr">
<img src="https://telegram.org/img/favicon-32x32.png" alt="" width="16" height="16">
<span>Telegram</span>
</a>
<a href="https://t.me/Daniel_Herr" rel="noopener noreferrer" target="_blank">
<img src="https://telegram.org/img/favicon-32x32.png" alt="" width="16" height="16">
<span>Telegram</span>
</a>

</address>
</body>
Expand Down