Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.18 KB

File metadata and controls

57 lines (38 loc) · 1.18 KB

🔢 Binary Calculator

A web-based binary number calculator that performs arithmetic operations directly on binary inputs and displays results in both binary and decimal.


✨ Features

  • Input binary numbers directly
  • Supports: addition, subtraction, AND, OR, XOR, NOT
  • Real-time result display in binary and decimal
  • Input validation — only accepts 0 and 1
  • Clean, responsive HTML/CSS/JS interface

🖥️ Tech Stack

Category Technology
Markup HTML5
Styling CSS3
Logic Vanilla JavaScript

🚀 Getting Started

Simply open index.html in any modern web browser — no server or build step required.

open index.html

📁 Project Structure

binary-calculator/
├── index.html   # App structure and layout
├── style.css    # Styling
└── script.js    # Binary arithmetic logic

📝 What I Learned

  • Binary arithmetic (addition, subtraction, bitwise ops)
  • DOM manipulation with vanilla JavaScript
  • Input validation and real-time UI updates
  • Building a complete mini-app with HTML + CSS + JS

Made with ❤️ as part of a learning journey