štvrtok 21. januára 2010

<u> underline

<p>Example for text <u>with underline</u></p>

Example for text with underline

<hr> - horizontal rule

<hr>
<!--Horizontal rule, width="100%". -->


width may be 1 - 100%


<hr width="30%">
<!--Horizontal rule, width="30%". -->



size may be 1 - 20
<hr width="75%" size="5" >
<!--Horizontal rule, width="75%" size 5 with shadow. -->



<hr noshade width="80%" size="5" >
<!--Horizontal rule, width="80%" size 5 without shadow. -->



align may be right, center or left
<hr noshade align="right" width="80%" size="2" >
<!--Horizontal rule, width="80%" size 2 without shadow,align right. -->



<hr noshade color="red" align="right" width="80%" size="2" >
<!--Horizontal rule, width="80%" size 2 without shadow,align right,color red. -->

<PRE> - perfomatted text

<PRE>
I got my first real six-string
Bought it at the five-and-dime
Played 'til my fingers bled
It was summer of '69...

Bryan Adams - Summer Of '69
</PRE>




I got my first real six-string
Bought it at the five-and-dime
Played 'til my fingers bled
It was summer of '69...

Bryan Adams - Summer Of '69

streda 20. januára 2010

Font size

This is your text in font size=2
<font size="2">This is your text in font size=2</font>

This is your text in font size=3
<font size="3">This is your text in font size=3</font>

This is your text in font size=4
<font size="4">This is your text in font size=4</font>

This is your text in font size=5
<font size="5">This is your text in font size=5</font>

This is your text in font size normal

<p>This is your text in font size=normal</p>

Letters <b> bold

This is example for letters in bold
<b>This is example for letters in bold</b>

Letters <i> italic

This is example for letters in italic
<i>This is example for letters in italic</i>

Comment

<!--This is comment in html document. Nothing will show in internet browser. -->

The <BR> tag - line break

<BR>
<!--This write to end of line. -->

<p>This is an example<BR> for the tag line break.</p>

This is an example
for the tag line break.

The <p> tag - paragraph

<p>your text</p>
<!--The paragraph contains the body text. This create a line break and a space between lines. -->

Exaple for align left

<p align="left">Exaple for align left</p>
<!--Text will aligned on left side. -->

Exaple for align right

<p align="right">Exaple for align right</p>
<!--Text will aligned on right side. -->

Exaple for align center

<p align="center">Exaple for align center</p>
<!--Text will aligned center. -->

utorok 19. januára 2010

Heading

Heading 1 Example

<h1>Heading 1 Example</h1>

Heading 2 Example

<h2>Heading 2 Example</h2>

Heading 3 Example

<h3>Heading 3 Example</h3>

Heading 4 Example

<h4>Heading 4 Example</h4>

Heading 5 Example
<h5>Heading 5 Example</h5>

Heading 6 Example
<h6>Heading 6 Example</h6>

Fonts

Standard fonts: Arial, Courier, Courier new, Helvetica, Times, Verdana

<font face="courier">Your text</font>


<font size="x"> <!--where x = 1 - 7 -->

<font color="#FF0000">Your text</font> <!-- Your text will be red -->

For example:

<font face="courrier" size="3" color="#ff0000">Your text</font>

Background: color, picture

<BODY>
<-- Body will be white -->

<BODY BGCOLOR="#FFFFCC">
<-- Body will be yellow -->

<BODY BACKGROUND="picture.jpg">
<-- Picture must be small - to fast upload - about 17 - 20 kb -->

Link to see colors

štvrtok 14. januára 2010

HEAD


<head>
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1250">

<!--This is for browsers-->
<meta name="description"
content="Short description of your page">

<!--This is for robots-->
<meta name="keywords" content="word1,word2,word3,...">
<!-- This is for robots -->
<meta name="robots" content="index,follow,all" >
<!-- This is for robots -->
<meta name="distribution" content="Global" >
<!-- This is for robots -->
<meta name="revisit-after" content="7 days" >
<!-- This is for robots -->
<title>Title of page</title>
<!--You can see this title in top left corner
of your browser-->
</head>





Basic HTML document



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">


<html>
<!--begins your html document-->
<head>
<!--begins head of your html document-->
<!--Head contains only informations about webpage.
This is invisible for visitors.-->
</head>
<!--ends head of your html document-->

<body>
<!--begins body of your page-->
<!--Body contains html codes of the page.
This is visible for visitors.-->
</body>
<!--ends body of your page-->

</html>
<!--ends your html document-->