3 New Tags


< marquee > Marquee Tag < /marquee >

The marquee tag is a depreciated tag that displays text moving across the screen to the left, right, up, or down, which can be adjusted through use of the direction attribute. You can describe behavior ising a "behavior" attribute or set the speed using "SCROLLDELAY" and "SCROLLAMOUNT".
It is not recommended for use. The correct way to do this now is to write an animation in CSS.

Examples of Marquee Tags:

I remember being a kid trying to build my own website, and I could not figure out how to make text do this! But everyone I asked told me not to use it, because it is annoying, and no one likes it. I have learned it now, and I couldn't resist using it.


Go! Go!! Go!!! GO!!!

The code for the above looks like this:

< center >< marquee width="20%" direction="up" SCROLLDELAY="200" >< p align="center" >
I remember being a kid trying to build my own website, and I could not figure out how to make text do this! But everyone I asked told me not to use it, because it is annoying, and no one likes it. I have learned it now, and I couldn't resist using it.
<‌/p><‌/marquee><‌/center>

< marquee SCROLLAMOUNT="300" >GO!!!< /marquee >

Source:

Marquee page on HTML.com
When you search for this tag, the title of this page that Google results displays is titled "The Marquee Tag in HTML: Why We Want It Banned"



abbr tag

This tag is mainly used to add explanations to abbreviations used on a webpage when hovered over, using the title attribute. It can also be used to style abbreviations within a webpage. I think you could also use this to add definitions to words that are not technically abbreviations.

Examples:

tbqh you could use this a lot for adding definitions or citations to stuff imo.
lmk if this helps, g2g bbl.

The code for the above looks like this:

<‌abbr title="to be quite honest">tbqh<‌/abbr> you could use this a lot for adding <‌abbr title="an explanation of meaning">definitions<‌/abbr> or <‌abbr title="(mdn web docs)" >citations<‌/abbr> to stuff <‌abbr title="in my opinion">imo<‌/abbr>.
<‌br>
<‌abbr title="let me know">lmk< /abbr> if this helps, <‌abbr title="got to go">g2g<‌/abbr> <‌abbr title="be back later">bbl<‌/abbr>.

Source:

mdn web docs page on the abbr tag

Word<‌wbr‌>Break<‌wbr‌>Oppurtunities

Examples:

SupercalifragilisticexpialidociousUm-dittle-ittl-um-dittle-IUm-dittle-ittl-um-dittle-IUm-dittle-ittl-um-dittle-IUm-dittle-ittl-um-dittle-I
Thistexthasnospacesinit,butifyouchangethesizeofyourpage,itwilladjustasneededtofitinsideofyourscreen!Neato!

The code for the above looks like this:

Supercalifragilisticexpialidocious<‌wbr>Um-dittle-ittl-um-dittle-I<‌wbr>Um-dittle-ittl-um-dittle-I<‌wbr>Um-dittle-ittl-um-dittle-I<‌wbr>Um-dittle-ittl-um-dittle-I
<‌br>
This<‌wbr>text<‌wbr>has<‌wbr>no<‌wbr>spaces<‌wbr>in<‌wbr>it,<‌wbr>but<‌wbr>if<‌wbr>you<‌wbr>change<‌wbr>the<‌wbr>size<‌wbr>of<‌wbr>your<‌wbr>page,<‌wbr>it<‌wbr>will<‌wbr>adjust<‌wbr>as<‌wbr>needed<‌wbr>to<‌wbr>fit<‌wbr>inside<‌wbr>of<‌wbr>your<‌wbr>screen!<‌wbr>Neato!

Source

w3 schools: HTML < wbr > Tag