<!DOCTYPE html>
<html lang="de">
  <head>
    <meta charset="utf-8">  
    <title> Einfacher Taschenrechner </title>
    <script>



    </script>
  </head>
  
  <body>
    <h1>Taschenrechner</h1>
    <!-- Eingabefeld 1. Zahl -->
    <p>
	   <strong>Zahl 1:</strong>
	   <input id="zahl1" type="Text" />
    </p>
    <!-- Eingabefeld 2. Zahl -->
    <p>
	   <strong>Zahl 2:</strong>
	   <input id="zahl2" type="Text" />
    </p>
    <!-- Aktionsbutton definieren -->
    <button onclick="addieren()">+</button>
    <button onclick="subtrahieren()">-</button>
    <button onclick="multiplizieren()">*</button>
    <button onclick="dividieren()">:</button>
    <p id="ergebnis">
  </body>
</html>
