ugly_calculator/index.html

41 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Calculator</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="#">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="calc-container">
<div>
<input type="text" name="out">
<input type="button" value="<" name="clear">
</div>
<div>
<input type="button" value="1">
<input type="button" value="2">
<input type="button" value="3">
<input type="button" value="/">
<input type="button" value="4">
<input type="button" value="5">
<input type="button" value="6">
<input type="button" value="*">
<input type="button" value="7">
<input type="button" value="8">
<input type="button" value="9">
<input type="button" value="-">
<input type="button" value="0">
<input type="button" value=".">
<input type="button" value="+">
<input type="button" value="=">
</div>
</div>
<script src="main.js"></script>
</body>
</html>