Thread: Html
View Single Post
  #4  
Old 01-27-2002, 06:16 AM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
Re: Html

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>

Reply With Quote