shfw-walkthrough/calculator/index.html
2023-10-04 14:42:02 +02:00

21 lines
566 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>ADC Offset Calculator</title>
</head>
<body>
<h1>ADC Offset Calculator</h1>
<label for="inputRadc">Radc (Ohms):</label>
<input type="number" id="inputRadc" placeholder="Enter Radc value (e.g., 130000)">
<br>
<button id="calculateButton">Calculate</button>
<br>
<div id="result"></div>
<script src="script.js"></script>
</body>
</html>