Create HTML Form in Seconds

Posted by Muhammad Shiraz Kamboh Monday, 28 May 2012 0 comments
Create Online Simple awesome HTML Form with easy 3 Steps Click Here to  Create PHP, HTML Form...

How Give A Kid an evil Look

Posted by Muhammad Shiraz Kamboh Sunday, 27 May 2012 0 comments
A. Open the photoTwo. Duplicate the original layer and call it "Eyes" (well, this is purely for convenience :)Three. Change the blend mode (blend mode) of the new layer to Screen ...

Chapter 18 : CSS Pseudo Elements

Posted by Muhammad Shiraz Kamboh 0 comments
The Syntax The syntax for pseudo elements is a bit different than that of regular CSS, but it’s real close. If you have already read chapter 11 then you are slightly ahead of the game.selector:pseudo-element {property: value}As you can see the only difference is that you place the pseudo element after the selector, and divide the 2 with a (:) colon.Or you can assign a class to a pseudo...

Chapter 17 : CSS Positioning

Posted by Muhammad Shiraz Kamboh 0 comments
Inherited: No PositionThe position property (as you may have guessed) changes how elements are positioned on your webpage.position: val...

Chapter 16 : CSS Classification

Posted by Muhammad Shiraz Kamboh 0 comments
Inherited: No ClearYou can control if an element allows floated elements to its sides with the clear propertyclear: valu...

Chapter 15 : CSS Width and Height Properties

Posted by Muhammad Shiraz Kamboh 0 comments
Inherited: No HeightYou can control the height of an element with the height propertyheight: valu...

Chapter 14 : CSS Lists

Posted by Muhammad Shiraz Kamboh 0 comments
Inherited: Yes List StyleYou can control the appearance of ordered and unordered lists in one declaration with the list-style propertylist-style: value valu...

Chapter 13 : CSS Borders

Posted by Muhammad Shiraz Kamboh 0 comments
Inherited: No BorderYou can set the color, style and width of the borders around an element in one declaration by using the border property.border: 1px solid #33333...

Chapter 12 : CSS Backgrounds

Posted by Muhammad Shiraz Kamboh 0 comments
Inherited: No BackgroundYou can style the background of an element in one declaration with the background property.background: #ffffff url(path_to_image) top left no-repeat fixe...

Chapter 11 : CSS Anchors, Links and Pseudo Classes

Posted by Muhammad Shiraz Kamboh 0 comments
Below are the various ways you can use CSS to style links. a:link {color: #009900;} a:visited {color: #999999;} a:hover {color: #333333;} a:focus {color: #333333;} a:active {color: #009900...

Chapter 10 : CSS Font Properties

Posted by Muhammad Shiraz Kamboh 0 comments
Inherited: Yes FontThe font property can set the style, weight, variant, size, line height and font:  font: italic bold normal small/1.4em Verdana, sans-serif;The above would set the text of an element to an italic style a bold weight a normal variant a relative size a line height of 1.4em and the font to Verdana or another sans-serif typeface.Font-FamilyYou can set what font will...

Chapter 9 : CSS Text Properties

Posted by Muhammad Shiraz Kamboh 0 comments
Inherited: Yes ColorYou can set the color of text with the following:  color: value;Possible values arecolor name – example:(red, black…) hexadecimal number – example:(#ff0000, #000000) RGB color code – example:(rgb(255, 0, 0), rgb(0, 0, 0...

Chapter 8 : CSS Padding

Posted by Muhammad Shiraz Kamboh 0 comments
Inherited: No Padding is the distance between the border of an (X)HTML element and the content within it.Most of the rules for margins also apply to padding, except there is no “auto” value, and negative values cannot be declared for padding.  padding-top: length percentage;   padding-left: length percentage;   padding-right: length percentage;   padding-bottom: length...

Chapter 7 : CSS Margins

Posted by Muhammad Shiraz Kamboh 0 comments
Inherited: No As you may have guessed, the margin property declares the margin between an (X)HTML element and the elements around it. The margin property can be set for the top, left, right and bottom of an element. (see example below)  margin-top: length percentage or auto;   margin-left: length percentage or auto;   margin-right: length percentage or...

Chapter 6 : CSS Spans

Posted by Muhammad Shiraz Kamboh 0 comments
Spans are very similar to divisions except they are an inline element versus a block level element. No linebreak is created when a span is declared. You can use the span tag to style certain areas of text, as shown in the following:<span class=”italic”>This text is italic</span>Then in my CSS file:.italic{   font-style: italic;...

Chapter 5 : CSS Divisions

Posted by Muhammad Shiraz Kamboh 0 comments
Ok so you have finished the first 4 chapters in my series. You have learned the very basics of CSS, how the syntax works and a bit about classes and IDs. Now we are gonna take a quick break from CSS and focus on the (X)HTML side of using it. DivsionsDivisions are a block level (X)HTML element used to define sections of an (X)HTML file. A division can contain all the parts that make up your website....

Chapter 4 : CSS IDs

Posted by Muhammad Shiraz Kamboh 0 comments
IDs are similar to classes, except once a specific id has been declared it cannot be used again within the same (X)HTML file. I generally use IDs to style the layout elements of a page that will only be needed once, whereas I use classes to style text and such that may be declared multiple times.The main container for this page is defined by the following.<div id=”container”> Everything...

Chapter 3 : CSS Classes

Posted by Muhammad Shiraz Kamboh 0 comments
The class selector allows you to style items within the same (X)HTML element differently. Similiar to what I mentioned in the introduction about inline styles. Except with classes the style can be overwritten by changing out stylesheets. You can use the same class selector again and again within an (X)HTML file. To put it more simply, this sentence you are reading is defined in my CSS file with the...

Chapter 2 : CSS Syntax

Posted by Muhammad Shiraz Kamboh 0 comments
The syntax for CSS is different than that of (X)HTML markup. Though it is not too confusing, once you take a look at it. It consists of only 3 parts. selector { property: value }The selector is the (X)HTML element that you want to style. The property is the actual property title, and the value is the style you apply to that property...

Chapter 1 : Introduction to CSS

Posted by Muhammad Shiraz Kamboh 0 comments
A CSS (cascading style sheet) file allows you to separate your web sites (X)HTML content from it’s style. As always you use your (X)HTML file to arrange the content, but all of the presentation (fonts, colors, background, borders, text formatting, link effects & so on…) are accomplished within a CSS. At this point you have some choices of how to use the CSS, either internally or externally.Internal...

Sending emails in PHP & email injection attacks

Posted by Muhammad Shiraz Kamboh 0 comments
PHP’s inbuilt mail() function provides very limited mail functionality. Although its easy to send text emails, but thats pretty much the only thing you can do with it. If you need extended functionality like HTML emails or attachments, you can always go through a couple of hundred pages of mail specifications at IETF .Or you can stop trying to reinvent the wheel and use existing PHP mail...

PHP MySQL Basics Tutorial

Posted by Muhammad Shiraz Kamboh 0 comments
PHP and MySql are the most common and popular combination you would come across on the Internet. Affordable Linux hosting, open source nature of these two technologies and the freedom from expensive proprietary licenses are the main reasons for the success of this combination.Connecting to MySQL through PHPTo connect to a mysql database server, use the following function: $link = mysql_connect($hostname,...

Submitting forms using PHP cURL

Posted by Muhammad Shiraz Kamboh 0 comments
In the previous article, we covered the PHP cURL basics. Specifically, we learned how to connect to a remote URL and retrieve the URL’s contents. In this article we will learn how to simulate form submission using PHP cURL. To submit forms using cURL, we need to follow the below steps:Prepare the data to be posted Connect to the remote URL Post (submit) the data Fetch response...

Facebook Funny Status

Posted by Muhammad Shiraz Kamboh 0 comments
Your Name: feels like getting some work done...and so he is sitting down until the feeling passes. Your Name: used to play sports. Then she realized you can buy trophies. Now she's good at everything. Your Name: is color blind and trying to solve a rubiks cube... This could take a while... Your Name: dreams of a better world...where chickens can cross the road without having their motives...

Delete Your Facebook Account Forever

Posted by Muhammad Shiraz Kamboh 0 comments
Whether you're trying to get a job and worried about snoopy new bosses, sick of maintaining a virtual profile constantly bombarded with increasingly useless updates and pings from people that you decreasingly actually know, fed up with Facebook's attitude towards their users, disgusted with your addiction to it, or just want you, your personal details and habits, and photos, out, deleting...

Beautiful Status Decorations

Posted by Muhammad Shiraz Kamboh 0 comments
▂ ▃ ▅ ▆ █ Your Status Here █ ▆ ▅ ▃ ▂ ★·.·´¯`·.·★[Your Status Here] ★·.·´¯`·.·★ ..♩.¸¸♬´¯`♬.¸¸¤ Your Status Here o ¤¸¸.♬´¯`♬¸¸.♩.. ¤♥¤Oº°‘¨☜♥☞¤[Your Status Here] ¤☜♥☞¨‘°ºO¤♥¤ ♬ •♩ ·.·´¯`·.·♭•♪ Your Status Here e ♪ •♭·.·´¯`·.·♩ •♬ »------(¯` Your Status Here ´¯)------» ¸.·'★¸.·'★*·~-.¸-(★[Your Status Here] ★)-,.-~*¸.·'★¸.·'★ •(♥).•*´¨`*•♥•(★) Your Status Here (★)•♥•*´¨`*•.(♥)• O.o°<*)>>>=[Your...

It’s Time to Create a ‘Neo-Constructivist’ Poster with Photoshop

Posted by Muhammad Shiraz Kamboh 0 comments
Step 1Open Photoshop and create a new document 1200px width by 1600px height, with an RGB color, and 72dpi. Then go to Create a new fill or adjustment layer in the Layers palette, select the Gradient Option and set the colors from #7D0000 to #480000. Set the angle value to 17 – 20º and hit OK.&nb...

How to Create Super-Malleable Effects with Colorful Lines

Posted by Muhammad Shiraz Kamboh 0 comments
PreparationFirst let’s grab the photos we’ll be using in this tutorial: girl and teddy, which are taken from one of my favorite stock sites 123rf.com. And one balloon photo from sxc.hu.Step 1Start by opening the girl image, then grab the Pen Tool (P) and start extracting. When you’re done making the path, right-click and select Make Selection. Then...

Popular Posts

About Me

My photo
I create this Blog for learn the all kind of tutorial about web developing | HTML, Java, PHP, Graphic designing, Corel Draw, Photoshop, Micromedia Flash, Swish and many more related software and internet programming tutorials.

Followers

Blog Archive