Posts

Showing posts from June, 2024

CALCULO FUERZA

Image
! DOCTYPE html > < html lang = "es" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Calculadora de Fuerza </ title > < style >     body {         font-family : Arial , sans-serif ;         margin : 20px ;     }     input [ type = "text" ], input [ type = "number" ] {         width : 100px ;         padding : 5px ;         margin : 5px ;     }     input [ type = "submit" ] {         padding : 10px ;     } </ style > </ head > < body > < h2 > Calculadora de Fuerza </ h2 > < form id = "forceCalculator" >     < label for = "mass" > Masa (kg): </ label >     < input type = "number" id = "mass" name = "mass" step =...