HTML5 1Q Complete the task below using HTML5 elements a Rate
HTML5
1Q. Complete the task below using HTML5 elements
a. Rate the food in your favorite restaurant
b. Create a range element for numbers from 1-1000
Solution
a.
Rating was done on a scale of 1 to 10. The average rating was 7 out of 10.
<p>1 <meter min = \"1\" max = \"10\" value = \"7\"></meter> 10</p>
 b.
<label>Range: 1<input type = \"range\" min = \"1\" max = \"20\"
    value = \"20\" /> 1000</label>
Hope this helps :)

