Posts

Showing posts from May, 2025

Programmable Calculator

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>NEO-CALC 2077</title>     <style>         @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');                  body {             margin: 0;             padding: 0;             background-color: #0b0b14;             color: #c2fbff;             font-family: 'Share Tech Mono', monospace;             display: flex;             justify-content: center;             align-items: center;         ...

Construction Calculator

  <! DOCTYPE html > < html lang = " en " > < head > < meta charset = " UTF-8 " > < meta name = " viewport " content = " width=device-width, initial-scale=1.0 " > < title > CONSTRUX-9000 | Ultimate Jobsite Calc </ title > < style > :root { --primary : #1a2b3c ; --secondary : #2c4d6e ; --accent : #00ffaa ; --accent-alt : #ff5588 ; --text : #e0e0e0 ; --panel : #0d1824 ; --warning : #ff5555 ; --display : #001a00 ; --success : #00cc77 ; } * { box-sizing : border-box ; margin : 0 ; padding : 0 ; } body { font-family : 'Courier New' , monospace ; background-color : #0a1018 ; color : var ( --text ) ; ...