do you know any cool html codes?

polscifreak

New member
HTML is an extremely primitive, yet required, coding language. All browers read HTML. It's how you're reading this page right now.

If you were looking at a simple content based page then a combination of HTML/CSS would be perfect.

However, if you want to allow a user to interact with your site, like you do with music, then you need to use HTML and a higher programming language. This could take the form of PHP, Javascript or something of the sort. Mainly because playing music on a webpage requires a media player of some sort, which cannot be accomplished strictly through HTML.

Your best bet is to find an HTML template that you like, then add and subtract to/from it.

If I can be of more assistance, please let me know.
 
just wanted to make my website cool looking... would also like to add my music to it,.. i will pic best answer.. thanks for your time.. lee
 
Unfortunately, HTML is not where the coolness of many webpages. Great effects come from styling with CSS, and even embedded flash. HTML merely holds the data.

Think of HTML like clay, and CSS is how you sculpt it into a great site. If you don't know CSS and don't want to learn, the best way is to check out some free website templates around the web.

Anyways, with the new HTML 5 you can embed music into your site as follows: <embed src="song.mp3" /> That's it! There are options as well, to show a little music player, start automatically, loop, hide, etc! See source for more details.
 
HTML is an extremely primitive, yet required, coding language. All browers read HTML. It's how you're reading this page right now.

If you were looking at a simple content based page then a combination of HTML/CSS would be perfect.

However, if you want to allow a user to interact with your site, like you do with music, then you need to use HTML and a higher programming language. This could take the form of PHP, Javascript or something of the sort. Mainly because playing music on a webpage requires a media player of some sort, which cannot be accomplished strictly through HTML.

Your best bet is to find an HTML template that you like, then add and subtract to/from it.

If I can be of more assistance, please let me know.
 
Back
Top