Web EndMemo

HTML Basic Page

• HTML Document Structures
<html>
<head>
  <title> ... </title>
  <base />
  <link />
  <isindex />
  <meta />
</head>
<body>
  Main Content ...
</body>
</html>

• Background and Font Color
<body bgcolor=# text=# link=# alink=# vlink=#>
bgcolor: background color
text: text color
link: hyperlink color
alink: Current visiting hyperlink color
vlink: Already visited hyperlink color
Color is RGB format, for example #ffffff (white), #000000 (black), #ff0000 etc.

• Background Image
<body background="/path/image/"> //background image

• Hyperlink, Jump Inside or Outside Page
<a href=""> ... </a> 
<a href="#name"> ... </a> //jump to a place inside the page
...
<a name="name">  //anchor for the jump
<a href="URL#name2"> ... </a> //jump to a place of another page

Try Jump to "Background Color"

• Open New window
<a href="" target="_blank"> ... </a>

Try Open a new window of html tutorial home page

• Horizontal Line
<hr>
<hr size=> //line size, 1, 2, 3 ... 
<hr width=> //line width, 40, 80% etc
<hr align=> //left, right, center
<hr noshade>
<hr color=> //RGB