Saturday, April 5, 2014

tables in html webpages



let's use some tables in our html webpage.......In this video you can learn that how to use table element in html webpages....

how to enter in admin system without knowing password?

Software Used - Prorat v1.9
**Always use prorat on a virtual machine.
***Never download prorat form the internet.

1. Open/Create your virutal machine.
2. Open Prorat.
3. Click on create.
4. Click on create prorat server 243 kbyat.
5. Uncheck all the options.
6. Check only the "mail option" enter your email id (Commercial emails like gmail, yahoo, rediff mail won't work)
7. Go to "General Settings" enter desired password and victim name .
8. Click on "bind with file".
9. Select the "desired file".
10. Click on "ok".
11. Select the server icon.
12. Click on create.
13. Go to the prorat folder look for the file named "binded_server" rename it and compress it.
14. Send that file to your target.
15. Check your e-mail for his ip and port address.
16. Enter them into prorat and click connect.
17. Enter the password.
18. If connected.
19. It's Hacked.

***use your coded virus to bind with server for better results.

callwithus.com - for fake voice calling

List element in html


Learn how to use list element in html pages. This video has contain hands-on tutorial video that step by step to use list element in html webpages.

Wednesday, January 22, 2014

CSS Part 7

Set the text cases: 

Following is the example which demonstrates how to set the cases for a text. Possible values are none, capitalize, uppercase, lowercase..

<p style="text-transform:capitalize;"> This will be capitalized </p> 
<p style="text-transform:uppercase;"> This will be in uppercase </p> 
<p style="text-transform:lowercase;"> This will be in lowercase </p>

This will produce following result:

This will be capitalized
This will be in uppercase
This will be in lowercase

Set the white space between text: 

Following is the example which demonstrates how white space inside an element is handled. Possible values are normal, pre, nowrap.

<p style="white-space:pre;">This text has a line break and the white-space pre setting tells the browser to honor it just like the HTML pre tag.</p>

This will produce following result:

This text has a line break 
and the white-space pre setting tells the browser to honor it 
just like the HTML pre tag.

Set the text shadow: 

Following is the example which demonstrates how to set the shadow around a text. This may not be supported by all the browsers.

<p style="text-shadow:4px 4px 8px blue;"> If your browser supports the CSS text-shadow property,  this text will have a  blue shadow.</p>

This will produce following result:

If your browser supports the CSS text-shadow property, this text will have a blue shadow.


CSS – Images

Images are very important part of any Web Page. Though it is not recommended to include lot of images but it is still important to use good images wherever it is required. 

CSS plays a good role to control image display. You can set following image properties using CSS.

  • The border property is used to set the width of an image border.
  • The height property is used to set the height of an image. 
  • The width property is used to set the width of an image. 
  • The -moz-opacity property is used to set the opacity of an image.

The image border Property: 

The border property of an image is used to set the width of an image border. This property can have a value in length or in %.

A width of zero pixels means no border.

Here is the example:

<img style="border:0px;" src="/images/css.gif" /> <br /> <img style="border:3px dashed red;" src="/images/css.gif" />

This will produce following result:




The image height Property: 

The height property of an image is used to set the height of an image. This property can have a value in length or in %. While giving value in %, it applies it in respect of the box in which an image is available.
Here is the example:

<img style="border:1px solid red; height:100px;"          src="/images/css.gif" /> <br /> <img style="border:1px solid red; height:50%;" src="/images/css.gif" />

This will produce following result:




The image width Property: 

The width property of an image is used to set the width of an image. This property can have a value in length or in %. While giving value in %, it applies it in respect of the box in which an image is available.

Here is the example:

<img style="border:1px solid red; width:50px;"          src="/images/css.gif" /> <br /> <img style="border:1px solid red; width:30%;"          src="/images/css.gif" />

This will produce following result:




The -moz-opacity Property: 

The -moz-opacity property of an image is used to set the opacity of an image. This property is used to create a transparent image in Mozilla. IE uses filter:alpha(opacity=x) to create transparent images.

In Mozilla (-moz-opacity:x) x can be a value from 0.0 - 1.0. A lower value makes the element more transparent (The same things goes for the CSS3-valid syntax opacity:x).

In IE (filter:alpha(opacity=x)) x can be a value from 0 - 100. A lower value makes the element more transparent.

Here is the example:

<img style="border:1px solid red;-moz-opacity:0.4;filter:alpha(opacity=40);" src="/images/css.gif" />

This will produce following result:



HTML Part 9

Strong Text - The <strong> Element: 

The <strong> element is intended to show strong emphasis for its content; stronger emphasis than the <em> element. As with the <em> element, the <strong> element should be used only when you want to add strong emphasis to part of a document.

<p>You <strong>must</strong> remember to close elements in XHTML.</p> 

This will produce following result: 

You must remember to close elements in XHTML.  

Text Abbreviation - The <abbr> Element : 

You can indicate when you are using an abbreviated form by placing the abbreviation between opening <abbr> and closing </abbr> tags. 

<p>I have a friend called <abbr title="Abhishek">Abhy</abbr>.</p>

This will produce following result: 

I have a friend called Abhy.

Using Acronym - The <acronym> Element :

The <acronym> element allows you to indicate that the text between an opening <acronym> and closing </acronym> element is an acronym. 
When possible use a title attribute whose value is the full version of the acronyms on the <acronym> element, and if the acronym is in a different language, include an xml:lang attribute in XHTML documents. 

<p>This chapter covers marking up text in <acronym title="Extensible Hypertext Markup Language">XHTML</acronym>.</p>

This will produce following result: 

This chapter covers marking up text in XHTML.

At present, the major browsers do not change the appearance of the content of the <acronym> element.

Special Terms - The <dfn> Element : 

The <dfn> element allows you to specify that you are introducing a special term. Its use is similar to the words that are in italics in the midst of paragraphs in this book when new key concepts are introduced.
Typically, you would use the <dfn> element the first time you introduce a key term and only in that instance. Most recent browsers render the content of a <dfn> element in an italic font.

<p>This tutorial teaches you how mark up your documents for the web using <dfn>XHTML</dfn>.</p>

This will produce following result:
This tutorial teaches you how mark up your documents for the web using XHTML.

Quoting Text - The <blockquote> Element : 

When you want to quote a passage from another source, you should use the <blockquote> element.
Text inside a <blockquote> element is usually indented from the left and right edges of the surrounding text, and sometimes uses an italicized font.

<p>The following description of XHTML is taken from the W3C Web site:</p>  
<blockquote> XHTML 1.0 is the W3C's first Recommendation for XHTML, following on from earlier work on HTML 4.01, HTML 4.0, HTML 3.2 and HTML 2.0. </blockquote>

This will produce following result:

The following description of XHTML is taken from the W3C Web site:
XHTML 1.0 is the W3C's first Recommendation for XHTML, following on from earlier work on HTML 4.01, HTML 4.0, HTML 3.2 and HTML 2.0. 

Citations - The <cite> Element : 

If you are quoting a text, you can indicate the source placing it between an opening <cite> tag and closing </cite> tag
As you would expect in a print publication, the content of the <cite> element is rendered in italicized text by default.

<p>This HTML Tutorial is derived from <cite>World Wide Web Standard for HTML</cite>.</p>

This will produce following result:


This HTML Tutorial is derived from World Wide Web Standard for HTML.

Computer Code - The <code> Element :

Any code to appear on a Web page should be placed inside a <code> element. Usually the content of the <code> element is presented in a monospaced font, just like the code in most programming books.

<h1> <code>This is inside code element</code></h1>

This will produce following result:


This is inside code element

Programming Variables - The <var> Element : 

This element is usually used in conjunction with the <pre> and <code> elements to indicate that the content of that element is a variable that can be supplied by a user.

<p><code>document.write("<var>user-name</var>")</code></p>

This will produce following result:

document.write("user-name")

Program Output - The Element : 
The element indicates sample output from a program, script, or the like. Again, it is mainly used when documenting programming concepts. For example: The element indicates sample output from a program, script, or the like. Again, it is mainly used when documenting programming concepts. For example:

<p>Result produced by the program is <samp>Hello World</samp></p>

This will produce following result: 



Result produced by the program is Hello World