Skip to content

Commit

Permalink
static.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wr3yth authored Aug 9, 2024
1 parent ea6d7f4 commit 33c27c3
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<title>Contraculator</title>
<style>
body {
background-color: #222;
color: #fff;
font-family: Arial, sans-serif;
}
input[type="button"] {
height: 20px;
width: 50px;
font-size: 12px;
background-color: #444;
color: #fff;
border: none;
}
#resultBox {
width: 300px;
height: 100px;
background-color: #333;
color: #fff;
padding: 10px;
margin-top: 20px;
}
</style>
</head>
<body>
<label for="numerals">Input alternative numeric values:</label>
<input type="text" id="numerals" placeholder="0123456789">
<input type="button" id="applyBtn" value="Apply">
<div id="calculator"></div>
<div id="resultBox"></div>
<br><br>
<label for="calculation">Contraculation box:</label>
<input type="text" id="calculation" placeholder="user input">

<script src="script.js"></script>
</body>
</html>

0 comments on commit 33c27c3

Please sign in to comment.