The link tag allows the user to add a small icon for the website tab. It's contained with a opening and closing
< link> tags.
Please note this example in your current tab.
The code that produced the output above looks like this:
< link rel="icon" type="image/x-icon" href="https://www.luzerne.edu/assets/images/favicon.ico">
I found this tag at W3Schools.com
The select and option tags allows the user to create a dropdown box to select a value from a list. It's contained with a opening and closing
< select> tags and for each option in the list it is followed by a < option> tag.
Please note this example down below.
The code that produced the output above looks like this:
< label for="pet-select">Choose a fruit:< /label>
< select id="pet-select">
< option value="">--Please choose an option--< /option>
< option value="orange">Orange< /option>
< option value="cherry">Cherry< /option>
< option value="Apple">Apple< /option>
< option value="grape">Grape< /option>
< option value="banana">Banana< /option>
< option value="taco">Taco< /option>
< /select>
I found this tag at developer.mozilla.org
The preserve formatting tag allows the user's to preserve the format of the code how it's written in the html document. It's contained with a opening and closing
< pre> tags.
Please note this example down below (imagine whitespace in the html document.)
Hey Look At this It looks cool!
The code that produced the output above looks like this:
< pre>
Hey Look At this It looks cool!
< /pre>
I found this tag at tutorialspoint.com