HOME DOMAIN ME YOU GRAPHICS

Nifty HTML Tutorials

Here for simple, Nifty HTML Tutorials? You're in the right place.
I won't go through the "really beginner" things, like making links or showing images. You can find those anywhere, and I personally think they're a little redundant.
Rather, I'll show nice little "Nifty" things that I use that I thought was cool when I found them.

|Lists|Embedded Music|Textboxes|

Lists

Everyone uses them. I use Lists on my "rules" page.

  • I like penguins
  • I like cookies
  • I like eating
  • I like sleeping

Looks familiar? Right. So, how do you make it?

<ul>
<li> I like penguins </li>
<li> I like cookies </li>
<li> I like eating </li>
<li> I likesleeping </li>
</ul>

Simple enough? If you want to add more points, just put in more <li> </li>.

Embedded Music

Next up is embedding music. You've seen sites that suddenly have sounds blaring when you open the page (you really don't want to do that). How do they use it? They use this simple code:



<embed src="music.midi">


Music Source: Blue Piano Man

I would suggest that you include autostart="false" in your coding so that it does not automatically start when you open your site.

Textboxes

Textboxes look like this:

It's great for when you want to put HTML codes in for people to copy.
The coding for it is like this:

<textarea>
Lots of text!
</textarea>

You can play around with the CSS like you would for tables or the layout itself, and change the colors, the background, the borders, etc.

Go back