Initial commit
This commit is contained in:
29
index.html
Normal file
29
index.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!doctype html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<title>Mein Konto</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<h1>Sparrkasse</h1>
|
||||
|
||||
<section class="balance">
|
||||
<label for="balanceDisplay">Kontostand:</label>
|
||||
<div id="balanceDisplay" class="amount">--</div>
|
||||
</section>
|
||||
|
||||
<section class="transfer">
|
||||
<label for="amountInput">Überweisungsbetrag</label>
|
||||
<input id="amountInput" type="text" placeholder="z. B. 120.50" aria-label="Überweisungsbetrag">
|
||||
<button id="transferBtn">Überweisen</button>
|
||||
</section>
|
||||
|
||||
<div id="message" role="status" aria-live="polite"></div>
|
||||
</main>
|
||||
|
||||
<script src="app.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user