40 lines
792 B
HTML
40 lines
792 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Fermi Calculator</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 20px;
|
|
}
|
|
#output {
|
|
border: 1px solid #ccc;
|
|
padding: 10px;
|
|
height: 400px;
|
|
overflow-y: auto;
|
|
white-space: pre-wrap;
|
|
background-color: #f9f9f9;
|
|
}
|
|
#input {
|
|
width: 80%;
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
margin-top: 10px;
|
|
}
|
|
#submit-btn {
|
|
padding: 10px 15px;
|
|
font-size: 16px;
|
|
margin-top: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Fermi Calculator</h1>
|
|
<div id="output"></div>
|
|
<input type="text" id="input" placeholder="Enter command">
|
|
<button id="submit-btn">Enter</button>
|
|
<script src="calculator.js"></script>
|
|
</body>
|
|
</html>
|