الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <form oninput="total.value = 'Total = ' + (parseFloat(price.value) + parseFloat(tva.value))"> <label for="price">Price</label> <input type="number" id="price" value="0"> <br><br> <label for="tva">TVA</label> <input type="number" id="tva" value="0"> <br><br> <output name="total" for="price tva">Please set Price & TVA</output> </form> </body> </html>