Add LICENSE, footer, and semantic HTML

LICENSE is dated 2018 because that is when I originally wrote the code.
This commit is contained in:
Florine W. Dekker 2019-06-10 01:33:54 +02:00
parent 77ef279b7f
commit ee36587003
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
2 changed files with 78 additions and 35 deletions

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018 Felix W. Dekker
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -20,53 +20,75 @@
margin-top: 50px;
margin-bottom: 50px;
}
.footer {
margin-top: 50px;
}
</style>
</head>
<body>
<div class="container">
<h1>Dice probabilities</h1>
<blockquote>
<p><em>Calculates the probability of throwing a value given a combination of dice.</em></p>
</blockquote>
<main class="wrapper">
<!-- Header -->
<header class="header">
<section class="container">
<h1>Dice probabilities</h1>
<blockquote>
<p><em>Calculates the probability of throwing a value given a combination of dice.</em></p>
</blockquote>
</section>
</header>
<!-- Input -->
<div class="row">
<div class="column">
<form>
<fieldset>
<table id="dieSettings">
<thead>
<tr>
<th>Sides per die</th>
<th>Number of throws</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<button id="addDieRowButton" class="button-outline" type="button">Add dice</button>
</td>
</tr>
</tbody>
</table>
<section class="container">
<div class="row">
<div class="column">
<form>
<fieldset>
<table id="dieSettings">
<thead>
<tr>
<th>Sides per die</th>
<th>Number of throws</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<button id="addDieRowButton" class="button-outline" type="button">Add dice
</button>
</td>
</tr>
</tbody>
</table>
<button id="submit" type="button">Submit</button>
</fieldset>
</form>
<button id="submit" type="button">Submit</button>
</fieldset>
</form>
</div>
</div>
</div>
</section>
<!-- Output -->
<h2>Probabilities</h2>
<div class="row">
<div class="column">
<canvas id="probChart"></canvas>
<section class="container">
<h2>Probabilities</h2>
<div class="row">
<div class="column">
<canvas id="probChart"></canvas>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<section class="container">
<p>Made by <a href="https://fwdekker.com/">Felix W. Dekker</a>. Licensed under the <a href="https://git.fwdekker.com/FWDekker/dice/LICENSE">MIT License</a>. Source code available on <a href="https://git.fwdekker.com/FWDekker/dice/">git</a>.</p>
</section>
</footer>
</main>
<!-- Scripts -->