Add and Remove Products HTML Activity
<!DOCTYPE html> <html> <head> Add and Remove <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <h1 class="font1"> Products and Price Select box</h1> <div id="container"> <form> <fieldset> <label for="name"> * add products: </label> <input type="text" id="name" placeholder="Enter Product" autocomplete="off"> <br> <br> <label for="price"> * add price: </label> <input type="number" id="price" placeholder="Enter Price" autocomplete="off"> <br> <br> <br> <button class="btn" id="btnAdd" size=10> <b> Add Product </b> </button> <br> ...