<BR> i.e. break line is an empty tag. An empty tag once opened is not needed to be closed.
Empty tags are the ones that do not need to be closed. They once opened are not closed like <br>.
In HTML, all tags are elements and all HTML elements other than empty elements and <p> elements require a start and end tag to delimit the element's content. The <br> tag is an example of an empty element (there is no </br> tag). However, an empty element can also be closed by the start tag, such that <br /> is acceptable (<br /> is a requirement of XHTML but not HTML).
HTML
<html> <body> <div></div> </body> </html> that is an empty div tag, there is nothing in between the <div> and </div>
Drop Down list is the select option in which there are multiple options on drop down. It can be done by <select> tag in HTML.
There are numerous websites where you can find free information on HTML, HTML tables and HTML programming. Some examples are Tizag, HTML Code Tutorial, Quackit, HTML Tables, and HTML Goodies. That should be more than enough to get you started.
You can create a HTML file in any of the text editors known. Notepad and various other IDE's are examples.
Try examples/yourdictionary.com//metaphorexamples/html
My god some questions are brief, there are millions of pieces of HTML combinations, the best place to look is w3schools.com and bleepingcomputer.com
HTML is a new generation scripting language which is used to make web sites. You can make highly interactive websites from this language.
First Google for "HTML tutorials", bookmark these sites and learn. HTML is what i like to call a tag language, and it's an easy thing to learn. a very basic webpage would look like: ================================================================================ <!-- --> is a HTML comment and wont be displayed by the browser, usage: <!-- this is a comment --> copy and paste the bit from <HTML> to </HTML> paste it in an empty text file and save it as .HTML open the newly saved HTML file(double click it), Congrats your first HTML page.
There are many of them. The convention now is to add a front slash into the tag, after the tagname and any attributes that might be in them. Examples include: <hr/> <br/> <img src="picture.jpg" /> <input type="text" /> <button />