db.sqlite3 filled with isotopes

This commit is contained in:
2025-03-20 22:05:44 +01:00
parent b849274618
commit 0d55853f03
24 changed files with 381 additions and 0 deletions

View File

@ -0,0 +1,26 @@
<div class="center">
<h1>Basic Calculator</h1>
<form action="result">
<input type="number" name="number1" placeholder="Enter first number">
<br>
<br>
<input type="number" name="number2" placeholder="Enter second number">
<br>
<br>
<button type="submit" name="add">Add</button>
<button type="submit" name="subtract">Subtract</button>
<button type="submit" name="multiply">Multiply</button>
<button type="submit" name="divide">Divide</button>
</form>
</div>
<style>
.center {
margin: auto;
width: 60%;
border: 3px solid #a5addb;
padding: 10px;
}
</style>