Quote:
Originally posted by aller05
will pay gelats for someone to post about the basics of HTML
or i will support any guild.
|
NPC Code:
Well first off html appears within the,
<html>
</html>
brackets ...
In the head,
<head>
</head>
part of the HTML, is where your web page
title,
<title>
</title>
and style,
<style>
</style>
sheets, as well as scripts,
<script>
</script>
if you have em.
Examples:
<html>
<head>
<title>Examples</titles>
<style type=text/css>
a:active {COLOR: #000000 ;}
a:visited {COLOR: #000000 ;}
a:hover {COLOR: #DCD21C;}
a:link {COLOR: #000000;}
</style>
</head>
</html>