honest hackerz
i am a honest hacker
we are honest hackerz so beware of us......... this is the most important news
Posted by ENJOY NEW TECHNOLOGY


Headings are important in HTML documents.

HTML Headings

Headings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading. <h6> defines the least important heading.

Example

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>

Note: Browsers automatically add some empty space (a margin) before and after each heading.

Headings Are Important

Use HTML headings for headings only. Don't use headings to make text BIG or bold.
Search engines use your headings to index the structure and content of your web pages.
Since users may skim your pages by its headings, it is important to use headings to show the document structure.
H1 headings should be used as main headings, followed by H2 headings, then the less important H3 headings, and so on.

HTML Lines

The <hr /> tag creates a horizontal line in an HTML page.

The hr element can be used to separate content:

Example

<p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>



HTML Comments

Comments can be inserted into the HTML code to make it more readable and understandable. Comments are ignored by the browser and are not displayed.
Comments are written like this:

Example

<!-- This is a comment -->

Note: There is an exclamation point after the opening bracket, but not before the closing bracket.

HTML Tip - How to View HTML Source

Have you ever seen a Web page and wondered "Hey! How did they do that?"
To find out, right-click in the page and select "View Source" (IE) or "View Page Source" (Firefox), or similar for other browsers. This will open a window containing the HTML code of the page.

BASIC HTML CH # 10

Posted by ENJOY NEW TECHNOLOGY


Simple Text Formatting

These tags have not changed since HTML 4 

DescriptionExample SyntaxResult
Bolded Text&amp;lt;b&amp;gt;Bolded Text&amp;lt;/b&amp;gt;Bolded Text
Italicized Text&amp;lt;i&amp;gt;Italicized Text&amp;lt;/i&amp;gt;Italicized Text
Deleted Text&amp;lt;del&amp;gt;Deleted Text&amp;lt;/del&amp;gt;Deleted Text
Big Text&amp;lt;big&amp;gt;Big Text&amp;lt;/big&amp;gt;Big Text
Small Text&amp;lt;small&amp;gt;Small Text&amp;lt;/small&amp;gt;Small Text
SubscriptH&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;OH2O
Superscript3 x 10&amp;lt;sup&amp;gt;8&amp;lt;/sup&amp;gt;3 x 108
HTML Ignore&amp;lt;xmp&amp;gt;&amp;lt;b&amp;gt;Text&amp;lt;/b&amp;gt;&amp;amp;#60;/xmp&amp;gt;&amp;lt;b&amp;gt;Text&amp;lt;/b&amp;gt;
Hyperlink&amp;lt;a href="http://www.google.com"&amp;gt;Google&amp;lt;/a&amp;gt;Google
Email Hyperlink&amp;lt;a href="mailto:mail@mail.com"&amp;gt;mail@mail.com&amp;lt;/a&amp;gt;mail@mail.com


CSS Text Formatting

These features must be used as arguments of the "style" argument of a "span" or "div" tag surrounding the text.
Attributes may be combined under style="" of the SPAN tag and seperated by a semicolon as such:
&amp;lt;span style="attribute:value;attribute2:value"&amp;gt;Text&amp;lt;/span&amp;gt;
DescriptionAttribute SyntaxResult
Underlined Texttext-decoration:underlineUnderlined Text
Font Colorcolor:redRed Text
Aligned Texttext-align:left/right/centerText will be aligned to the left, right, or center
Change the Fontfont-family:fontnameText will be in style "fontname"
Font Sizefont-size:200%2x Size Text


Self-closing Tags

Tags that, by definition, contain nothing between the opening and closing tags must self-closewith a space and forward slash:
Images&amp;lt;img src="something.jpg" /&amp;gt;
Carriage Return&amp;lt;br /&amp;gt;
Horizontal Breaking Line&amp;lt;hr /&amp;gt;


Useful Characters

This is a small list of characters that may be useful in the E-logs. For a more complete list, seeCharacter Chart.
Note:All characters are of the format: (ampersand)(charname)(semicolon).
DescriptionSyntaxResult
Function Symbol&fnof;Æ’
Greek Capital Letter&(Lettername);&Delta; yields Î”
Greek Lowercase Letter&(lettername);&delta; yields Î´
Arrows&uarr;, &darr;, &larr;, &rarr;, &crarr;, &harr;↑, ↓, ←, →, ↵, ↔
For All Symbol&forall;
Partial Differential&part;
"There Exists" Symbol&exist;
Empty/Null Set&empty;
Nable Symbol&nabla;
"Element of" Symbol&isin;
"Not an Element of" Symbol&notin;
"Contains as Member" Symbol&ni;
Radical Sign&radic;
"Proportional To" Symbol&prop;
Infinity Symbol&infin;
Angle Symbol&ang;
Integral Symbol&int;
"Therefore" Symbol&there4;
"Similar to" Symbol&sim;
"Almost Equal to" Symbol&asymp;
"Not Equal to" Symbol&ne;
"Equivalent to" Symbol&equiv;
"Less-than or Equal to" Symbol&le;
"Greather-than or Equal to" Symbol&ge;
"Vector Product" Symbol&otimes;
"Perpendicular to" Symbol&perp;
"Much Greater Than" Symbol&raquo;»
"Much Less Than" Symbol&laquo;«
Degree Symbol&deg;°
"Plus/Minus Error" Symbol&plusmn;±
"Letter O with Slash" Symbol&Oslash;Ø
No break space&nbsp; 


How to Create Lists

Unordered list:
uses &amp;lt;ul&amp;gt; and &amp;lt;/ul&amp;gt; tags, and each list item must be inside &amp;lt;li&amp;gt; and &amp;lt;/li&amp;gt;
Example:
&amp;lt;ul&amp;gt; &amp;lt;li&amp;gt;List item&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Second Iten&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Third Item&amp;lt;/li&amp;gt; &amp;lt;ul&amp;gt; Yields:
  • List item
  • Second Item
  • Third Item
Ordered list:
uses &amp;lt;ol&amp;gt; and &amp;lt;/ol&amp;gt; tags, and each list item must be inside &amp;lt;li&amp;gt; and &amp;lt;/li&amp;gt;
Example:
  1. List item
  2. Second Item
  3. Third Item



How to Create Tables

Simple data tables consist of three parts:
&amp;lt;table&amp;gt;, &amp;lt;tr&amp;gt; and &amp;lt;td&amp;gt;Where all elements are contained within the <table> tags, <tr> tags surround a row, and <td> tags surround a table cell's content. As an example, the code:

BASIC HTML CH # 11

Posted by ENJOY NEW TECHNOLOGY


CSS is used to style HTML elements.

Look! Styles and colors


This text is 30 pixels high


Styling HTML with CSS

CSS was introduced with HTML 4, to provide a common way to style HTML elements.
CSS styling can be added to HTML in the following ways
  • in separate style sheet files (CSS files)
  • in the style element in the HTML head section
  • in the style attribute in single HTML elements.

Using the HTML Style Attribute

It is time consuming and not very practical to style HTML elements using the style attribute.
The preferred way to add CSS to HTML, is to put CSS syntax in separate CSS files.
However, in this HTML tutorial we will introduce you to CSS using the style attribute. This is done to simplify the examples. It also makes it easier for you to edit the code and try it yourself.
You can learn everything about styles and CSS in our 

HTML Style Example - Background Color

The background-color property defines the background color for an element:

Example

<html>

<body style="background-color:yellow">
<h2 style="background-color:red">This is a heading</h2>
<p style="background-color:green">This is a paragraph.</p>
</body>

</html>

The style attribute makes the "old" bgcolor attribute obsolete.

HTML Style Example - Font, Color and Size

The font-family, color, and font-size properties defines the font, color, and size of the text in an element:

Example

<html>

<body>
<h1 style="font-family:verdana">A heading</h1>
<p style="font-family:arial;color:red;font-size:20px;">A paragraph.</p>
</body>

</html>

The style attribute makes the old <font> tag obsolete.


HTML Style Example - Text Alignment

The text-align property specifies the horizontal alignment of text in an element:

Example

<html>

<body>
<h1 style="text-align:center">This is a heading</h1>
<p>The heading above is aligned to the center of this page.</p>
</body>

</html>

The style attribute makes the old "align" attribute obsolete.


Deprecated Tags and Attributes

In HTML 4, several tags and attributes are deprecated. Deprecated means that they will not be supported in future versions of HTML and XHTML.
Remark The message is clear: Avoid using deprecated tags and attributes!
These tags and attributes should be avoided:
TagsDescription
<center>Deprecated. Defines centered content
<font> and <basefont>Deprecated. Defines HTML fonts
<s> and <strike>Deprecated. Defines strikethrough text
<u>Deprecated. Defines underlined text
AttributesDescription
alignDeprecated. Defines the alignment of text
bgcolorDeprecated. Defines the background color
colorDeprecated. Defines the text color
For all of the above: Use styles instead!

BASIC HTML CH # 12

Posted by ENJOY NEW TECHNOLOGY


HTML Hyperlinks (Links)

A hyperlink (or link) is a word, group of words, or image that you can click on to jump to a new document or a new section within the current document.
When you move the cursor over a link in a Web page, the arrow will turn into a little hand.
Links are specified in HTML using the <a> tag.
The <a> tag can be used in two ways:
  1. To create a link to another document, by using the href attribute
  2. To create a bookmark inside a document, by using the name attribute

HTML Link Syntax

The HTML code for a link is simple. It looks like this:
<a href="url">Link text</a>
The href attribute specifies the destination of a link.

Example

<a href="http://www.w3schools.com/">Visit W3Schools</a>
which will display like this: 
Clicking on this hyperlink will send the user to ' homepage.
Tip: The "Link text" doesn't have to be text. You can link from an image or any other HTML element.

HTML Links - The target Attribute

The target attribute specifies where to open the linked document.
The example below will open the linked document in a new browser window or a new tab:

Example

<a href="http://www.w3schools.com/" target="_blank">Visit W3Schools!</a>



HTML Links - The name Attribute

The name attribute specifies the name of an anchor.

The name attribute is used to create a bookmark inside an HTML document.
Note:The upcoming HTML5 standard suggest using the id attribute instead of the name attribute for specifying the name of an anchor.
Using the id attribute actually works also for HTML4 in all modern browsers.
Bookmarks are not displayed in any special way. They are invisible to the reader.

Example

A named anchor inside an HTML document:
<a name="tips">Useful Tips Section</a>
Create a link to the "Useful Tips Section" inside the same document:
<a href="#tips">Visit the Useful Tips Section</a>
Or, create a link to the "Useful Tips Section" from another page:
<a href="http://www.w3schools.com/html_links.htm#tips">
Visit the Useful Tips Section</a>


Basic Notes - Useful Tips

Note: Always add a trailing slash to subfolder references. If you link like this: href="http://www.w3schools.com/html", you will generate two requests to the server, the server will first add a slash to the address, and then create a new request like this: href="http://www.WORLDHACKERZ.TK/html/".
Tip: Named anchors are often used to create "table of contents" at the beginning of a large document. Each chapter within the document is given a named anchor, and links to each of these anchors are put at the top of the document.
Tip: If a browser does not find the named anchor specified, it goes to the top of the document. No error occurs.

BASIC HTML CH # 13

Posted by ENJOY NEW TECHNOLOGY


Norwegian Mountain Trip

Pulpit Rock

Try it Yourself - Example

HTML Images - The <img> Tag and the Src Attribute

In HTML, images are defined with the <img> tag. 
The <img> tag is empty, which means that it contains attributes only, and has no closing tag.
To display an image on a page, you need to use the src attribute. Src stands for "source". The value of the src attribute is the URL of the image you want to display.
Syntax for defining an image:
<img src="url" alt="some_text"/>
The URL points to the location where the image is stored. An image named "boat.gif", located in the "images" directory on "www.WORLDHACKERZ.TK" has the URL: http://www.WORLDHACKERZ.TK/images/boat.gif.
The browser displays the image where the <img> tag occurs in the document. If you put an image tag between two paragraphs, the browser shows the first paragraph, then the image, and then the second paragraph.

HTML Images - The Alt Attribute

The required alt attribute specifies an alternate text for an image, if the image cannot be displayed.
The value of the alt attribute is an author-defined text:
<img src="boat.gif" alt="Big Boat" />
The alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader).

HTML Images - Set Height and Width of an Image

The height and width attributes are used to specify the height and width of an image.
The attribute values are specified in pixels by default:
<img src="pulpit.jpg" alt="Pulpit rock" width="304" height="228" />
Tip: It is a good practice to specify both the height and width attributes for an image. If these attributes are set, the space required for the image is reserved when the page is loaded. However, without these attributes, the browser does not know the size of the image. The effect will be that the page layout will change during loading (while the images load).

Basic Notes - Useful Tips

Note: If an HTML file contains ten images - eleven files are required to display the page right. Loading images take time, so my best advice is: Use images carefully.
Note: When a web page is loaded, it is the browser, at that moment, that actually gets the image from a web server and inserts it into the page. Therefore, make sure that the images actually stay in the same spot in relation to the web page, otherwise your visitors will get a broken link icon. The broken link icon is shown if the browser cannot find the image.

BASIC HTML CH # 14

Posted by ENJOY NEW TECHNOLOGY


HTML Tables

Apples44%
Bananas23%
Oranges13%
Other10%


Examples

Try it Yourself - Examples

HTML Tables

Tables are defined with the <table> tag.
A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). td stands for "table data," and holds the content of a data cell. A <td> tag can contain text, links, images, lists, forms, other tables, etc.

Table Example

<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
How the HTML code above looks in a browser:
row 1, cell 1row 1, cell 2
row 2, cell 1row 2, cell 2


HTML Tables and the Border Attribute

If you do not specify a border attribute, the table will be displayed without borders. Sometimes this can be useful, but most of the time, we want the borders to show.
To display a table with borders, specify the border attribute:
<table border="1">
<tr>
<td>Row 1, cell 1</td>
<td>Row 1, cell 2</td>
</tr>
</table>


HTML Table Headers

Header information in a table are defined with the <th> tag.
All major browsers will display the text in the <th> element as bold and centered.
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
How the HTML code above looks in your browser:
Header 1Header 2
row 1, cell 1row 1, cell 2
row 2, cell 1row 2, cell 2

honest hackerz

video