Hello everyone! I've recently started working on a pure HTML/CSS/JS calculator project. While the HTML and CSS parts went smoothly, I'm facing some issues with getting the initial functions to work properly. Despite doing some research online, I can't seem to figure out what's causing the problem. So, here's the code snippet that might be relevant.
var oneBtn = document.getElementById('calc-one');
var twoBtn = document.getElementById('calc-two');
// More similar declarations follow...
@import url('https://fonts.googleapis.com/css?family=Roboto:100&display=swap');
body {
font-family: 'Roboto', sans-serif;
}
// More CSS styling goes here...
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Pure HTML/CSS/JS Calculator</h1>
// Relevant HTML structure for the calculator display
</body>