Jump to content

Beatus

Neophyte
  • Posts

    1
  • Joined

  • Last visited

Everything posted by Beatus

  1. <!DOCTYPE html> <html lang=ru> <head> <meta charset="utf-8"/> <meta name="author" content="DV"/> <meta name="keywords" content="Калькулятор"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <meta name="description" content="Калькулятор"/> <title>Калькулятор</title> <link rel="stylesheet" href="styles.css"> </head> <body> <form oninput="result.value=num1.value+num2.value"> <h3>Сумма двух чисел</h3> <p>Введите первое число: <input type=number size="1" name="num1" autofocus></p> <p>Введите второе число: <input type=number size="1" name="num2" autofocus></p> <p>Сумма: <output name="result"></output></p> </form> </body> </html> Подскажите пожалуйста почему не работает?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy