
<iframe id="inlineFrameExample"
title="Inline Frame Example"
width="300"
height="200"
src="https://www.openstreetmap.org/export/embed.html?bbox=-0.004017949104309083%2C51.47612752641776%2C0.00030577182769775396%2C51.478569861898606&layer=mapnik">
</iframe>


<form>, <input> and <label><form> tag<input> elements in a form should have a corresponding <label> to be accessible.<input> typestext : first name, last nameemail : email validationpassword : hides password field using *****tel : telephone numbersurl : a link to a websiteradio : radio button (has to have a name attribute identical to the other radio button)checkbox : checkbox, does not depend on other checkboxesnumber : can have a min and max attribute<input> types
<selection>
<option>sinputdate : provides a date picker in modern browserscolor : provides a color picker in modern browserstime : provides a time picker in modern browsers<input list="foo">
<datalist id="foo"><option>s<selection>
<option>sinputdate : provides a date picker in modern browserscolor : provides a color picker in modern browserstime : provides a time picker in modern browsers<input list="foo">
<datalist id="foo"><option>s<textarea> : Multiple lines of textExample:
<form>
<label for="first-name">First Name</label>
<input type="text" id="first-name">
<label for="last-name">Last Name</label>
<input type="text" id="last-name">
<label for="email">Email Address</label>
<input type="email" id="email">
<label for="message">Your Message</label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
</form>
