Three new tags
< address> Address < /address>
The address tag allows you to display a link to an email and and other information such as a street address.
Contact info:
Written by Andrew Greblunas
521 Trailblazer Drive, Nanticoke, PA
USA
Example code:
< address>
Written by < a href="ag0517184@student.luzerne.edu">Andrew Greblunas< /a>< br>
521 Trailblazer Drive, Nanticoke, PA< br>
USA
< /address>
I found this tag at: www.tutorialrepublic.com
< textarea> Text Area < /textarea>
The Text area tag allows user text input. This could allow people to submit reviews for a product.
product review:
example code:
< textarea rows="6" cols="44">Review our product!< /textarea>
I found this tag at: www.developer.mozilla.org
< button> Button < /button>
The button tag can be used to get a user conformation. such as when submitting a product review.
Submit Review:
example code:
< button>Submit Review< /button>
I found this tag at: www.geeksforgeeks.org