jolzem.com/schule/info/html/projekt/downloads.html
2023-01-20 19:11:42 +01:00

75 lines
2.0 KiB
HTML

<!--This is a download page with different software, which is downlaodable-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Downloads</title>
<link rel=stylesheet href=css/style.css>
</head>
<body>
<div id="wrap">
<div id="header">
<a href="index.html">
<img src=images/header.png alt="header">
</a>
</div>
<div id="navigation">
<ul>
<li>
<a href="details.html">
<p class="nav">
details
</p>
</a>
</li>
<li>
<a href="shop.html">
<p class="nav">
shop
</p>
</a>
</li>
<li>
<a href="downloads.html">
<p class="nav">
downloads
</p>
</a>
</li>
</ul>
</div>
<div id="content">
<h1>Downloads</h1>
<!--I used the download tag to indicate, that the file that is being linked to, is supposed to be downloaded-->
<a href="https://github.com/the-via/releases/releases/download/v1.3.1/via-1.3.1-win.exe" download>
<h3>VIA</h3>
</a>
<p> VIA is a software, you can use to program a Keyboard.
<br>
Before you build, you normally test the PCB, which you can do with this Software too.
<br>
It is also used to change the RGB lightning on the switches or the PCB.
</p>
<br>
<br>
<a href="https://www.autohotkey.com/download/ahk-install.exe" download>
<h3>AutoHotkey</h3>
</a>
<p>AutoHotkey is a software, which is used to program macros to either to special macro keys,
or your normal Keys. It is normally used for Macro keyboards, which you can find
<a href="https://kbdfans.com/collections/20/products/kbdfans-kbdpad-pcb-v2" target="_blank">here</a>.
</p>
</div>
<div id="sidebar">
</div>
<div id="footer">
<a href="contact.html" title="Contact">Contact</a>
<a href="legal_notice.html" title="Legal Notice">Legal Notice</a>
<a href="privacy_policy.html" title="Privacy Policy">Privacy Policy</a>
</div>
</div>
</body>
</html>