The button tag creates a button that can be used for a variety of purposes, although I could not tell you how to make it work.
The button was created by doing the following:
<button disabled>Purposeless, unclickable button</button>
The tag was located on the DELTARUNE $pamton Sweepstakes page, and more information was found on W3Schools.
The div tag allows partitioning sections of a web page with unique styles.
Which means that you can have a portion of your page that has a red background with aqua text...
...while also having another section in the same portion that has green text and hex-code #FF7FFF text!
All within a blue background!
This is how I used the Div tag:
<div style="background-color:#0000ff;color:#ffff00">
<div style="background-color:red;color:aqua">
<p>Which means that you can have a portion of your page that has a red background with aqua text...</p>
</div>
<div style="background-color:green;color:#ff7fff">
<p>...while also having another section in the same portion that has green text and hex-code #FF7FFF text!</p>
</div>
<p>All within a blue background!</p>
</div>
This tag was found on GeeksforGeeks.
The blockquote tag generates text in quote format. This is pairable with the Cite tag so that a link can be generated alongside it.
The
<blockquote>
HTML element indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). A URL for the source of the quotation may be given using thesite
attribute, while a text representation of the source can be given using the<code>
element.
–MDN developers, <blockquote>: The Block Quotation element
This quote was generated by doing the following:
<div>
<blockquote cite="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote">
<p>The <strong><code><blockquote></code></strong> <a href="https://developer.mozilla.com/en-US/docs/Web/HTML">HTML</a> element indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote#usage_notes">Notes</a> for how to change it). A URL for the source of the quotation may be given using the <code>site</code> attribute, while a text representation of the source can be given using the <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite"><code><code></code></a> element.</p>
</blockquote>
<p>–MDN developers, <cite><blockquote>: The Block Quotation element</cite></p>
</div>
As the quote above suggests, this information was taken from MDN Web Docs.