49 lines
1.7 KiB
HTML
49 lines
1.7 KiB
HTML
<!--
|
|
|
|
Basic Joystick Input Device - a very simple and cool way of getting to know how a joystick works underneath the hood.
|
|
Copyright (C) 2018, Diogo Cordeiro.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=800" />
|
|
<title>Basic Joystick Input Device</title>
|
|
<meta name="description" content="A very simple and cool way of getting to know how a joystick works underneath the hood.">
|
|
<meta name="author" content="Diogo Cordeiro">
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
</head>
|
|
|
|
<body class="container">
|
|
<div class="images" id="row1">
|
|
</div>
|
|
<div class="images" id="row2">
|
|
</div>
|
|
<div class="images" id="row3">
|
|
</div>
|
|
|
|
<!-- Credits -->
|
|
<p class="text" id="footer">Made with <span style="color: #e25555;">♥</span> by
|
|
<a href="https://www.diogo.site/">Diogo Cordeiro</a></p>
|
|
<!-- JS -->
|
|
<script src="script.js"></script>
|
|
</body>
|
|
|
|
</html>
|