Jump to content

User:HiyaHiya/Codebox: Difference between revisions

HiyaHiya (talk | contribs)
HiyaHiya (talk | contribs)
 
(One intermediate revision by the same user not shown)
Line 74: Line 74:


-->
-->
<html>
    <head>
       
    </head>
<body>
<a href="https://owot.me">owot.me</a>
<a href="https://owot.me">owot.me</a>
<!-- A elements are anchor elements and allow you to link things -->
<!-- A elements are anchor elements and allow you to link things -->
Line 86: Line 91:
</address>
</address>
<!-- address elements are useful for writing addresses, both digital and physical. -->
<!-- address elements are useful for writing addresses, both digital and physical. -->
<img src="http://dawgvideo.rf.gd/textwallsq.png" alt="squares" usemap="#owotsq">
<map name="owotsq">
  <area shape="rect" coords="76,117,238,279" alt="OWOT square" href="https://owot.me">
  <area shape="rect" coords="414,176,621,358" alt="Textwall square" href="https://textwall.cc">
</map>
<!-- i actually just learned about the area and map elements! i wanted to make such a thing for a very long time -->
<article>
    This is an article. No visual form of the div like element tho.
</article>
<!-- article is for semantic purposes only. -->
<aside>Another semantic</aside>
<!-- aside is also used for semantic purposes. -->
<audio controls src="https://files.catbox.moe/zflzaa.mp3"></audio>
<!-- audio allows you to play audio on a webpage.
put "controls" on your audio element, and it will get controls.
This is basically required.
put "autoplay" and it will autoplay.
put "muted" and it will mute.
-->
<b>Bold text!</b>
<!-- b allows you to bold text. -->
</body>
</html>
</syntaxhighlight>
</syntaxhighlight>
== assembly ==
== assembly ==