| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html style="font-size: 16px"> | 2 <html style="font-size: 16px"> |
| 3 <head> | 3 <head> |
| 4 | 4 |
| 5 <meta name="viewport" content="width=800"> | 5 <meta name="viewport" content="width=800"> |
| 6 <style> | 6 <style> |
| 7 body { | 7 body { |
| 8 width: 800px; | 8 width: 800px; |
| 9 margin: 0; | 9 margin: 0; |
| 10 overflow-y: hidden; | 10 overflow-y: hidden; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 incididunt ut labore et dolore magna aliqua. | 31 incididunt ut labore et dolore magna aliqua. |
| 32 </div> | 32 </div> |
| 33 <div> | 33 <div> |
| 34 Check one or more: | 34 Check one or more: |
| 35 <input type="checkbox" name="vehicle" value="Bike">I have a bike<br/> | 35 <input type="checkbox" name="vehicle" value="Bike">I have a bike<br/> |
| 36 <input type="checkbox" name="vehicle" value="Car">I have a car <br/> | 36 <input type="checkbox" name="vehicle" value="Car">I have a car <br/> |
| 37 </div> | 37 </div> |
| 38 | 38 |
| 39 </body> | 39 </body> |
| 40 </html> | 40 </html> |
| OLD | NEW |