Smileys and Emoticons With Names

Posted by Muhammad Shiraz Kamboh Wednesday 20 June 2012 0 comments
A smiley is a sequence of characters on your computer keyboard. If you don't see it, try tilting your head to the left -- the colon represents the eyes, the dash represents the nose and the right parenthesis represents the mouth. Smileys usually follow after the punctuation (or in place of the punctuation) at the end of a sentence. A smiley tells someone what you really mean when you make an offhand remark. They are also called emoticons because they intend to convey emotion!
A new generation of smileys has appeared on the scene and NetLingo is fast trying to track them down. We consider these "straight-on smileys" as another form of ASCII ART: those in which you do not tilt your head but rather look at it straight on, such as @(*0*)@ for a koala. A new section is coming soon!
And, lest you think that's all, there are also now assicons and boobiecons... emoticons which highlight other parts of the body! Here is our ever-growing list of smileys...enjoy!

Smileys and Emoticons With Names

Posted by Muhammad Shiraz Kamboh 0 comments
A smiley is a sequence of characters on your computer keyboard. If you don't see it, try tilting your head to the left -- the colon represents the eyes, the dash represents the nose and the right parenthesis represents the mouth. Smileys usually follow after the punctuation (or in place of the punctuation) at the end of a sentence. A smiley tells someone what you really mean when you make an offhand remark. They are also called emoticons because they intend to convey emotion!
A new generation of smileys has appeared on the scene and NetLingo is fast trying to track them down. We consider these "straight-on smileys" as another form of ASCII ART: those in which you do not tilt your head but rather look at it straight on, such as @(*0*)@ for a koala. A new section is coming soon!
And, lest you think that's all, there are also now assicons and boobiecons... emoticons which highlight other parts of the body! Here is our ever-growing list of smileys...enjoy!

PHP Browser Redirect

Posted by Muhammad Shiraz Kamboh Wednesday 13 June 2012 0 comments
It is an simple example which will take the visitors to one page if they are using Internet Explorer, and to another page if the visitor is using another type of browser.
Now lets decide what is going to happen if:
  1. If the browser is Microsoft Internet Explorer (MSIE), it will automatically redirect to: www.tutorialize.org/redirect1 ( example )
  2. If the browser is not Microsoft Internet Explorer (MSIE), it will automatically redirect to: www.tutorialize.org/redirect2( example )
The most interesting part of this is that this code is, that it has to be sent out before any output to the HTML page. You will have to make sure that the code is filled under the first line of code on your PHP page.
This is the example php code, it can be modified in many ways to fill your requests.
 
//if its MSIE then
if ($name = strstr ($HTTP_USER_AGENT, "MSIE"))
{
   //it will send to www.tutorialize.org/redirect1
   Header ("Location: http://www.tutorialize.org/redirect1");
}
else
{
   //else will send to www.tutorialize.org/redirect2
   Header ("Location: http://www.yahoo.com/");
}

Drawing Modern Room

Posted by Muhammad Shiraz Kamboh Tuesday 12 June 2012 0 comments
 Using this full explained tutorial, you will learn how to draw a modern room using the flash techniques. You don't have to use action script code to make this lesson. Only one thing that you have, is to use Line and Paint Bucket Tool.

Step 1

Create a new flash document and for background color choose white.






Step 2


Take the Line Tool (N) and go to the Properties Panel (Ctrl+F3) below the stage. Then, choose the following options:

1. Enter black for the stroke color
2. Select Solid as the type of outline, with the line thickness set to 1.5
3. Turn on the Stroke hinting option to get rid of any blurry edges while drawing.



Then, draw this shape which will represent carpet. See the picture below.



Step 3
After that, draw this shape above the carpet which will represent bookcase.



Step 4

Then, draw this element of bookcase:



Now. you have this:



It's time for TV, so draw this shape:



Step 5

After that, draw this element of Tv.



Step 6

It's time for vase, so draw this shape which will represent our vase.



Step 7

After that, draw this part of wall. See the picture below.



Step 8

It's time for painting, so take the Paint Bucket Tool (K) and paint the furniture, carpet, tv and vase in color which you like. Finally, you have to get something like this:



We're not over yet. Now, we have to paint the wall, so take the Rectangle Tool (R). In the Colors portion of the Tool panel, block the Fill color by clicking on the little Paint Bucket icon and then on the small square with the red diagonal line. For Stroke color choose black and draw a “rectangle” about 450x321px like it is shown on the picture below.



Then, take again the Paint Bucket Tool (K) and piant the wall and floor in color which you like.



Only one thing that we have to do is to import any picture and place it on tv. So choose File > Import > Import to Stage (shortcut key: Ctrl+R) and import any picture into a flash stage. After that, palce it within the tv. See the picture below.



We're done!

Enjoy!

Mouse animation

Posted by Muhammad Shiraz Kamboh 0 comments
See this example and learn how to create cool animation using the mouse. To make this example, you also have to use action script code. When you move your mouse over the objects, they will follow the mouse moving. You can use this example whenever you want, that some object follow the mouse.





Preview:


Invisible Flash Button tutorial

Posted by Muhammad Shiraz Kamboh 0 comments
I am going to show you how to create the Invisible Button in flash 8 on a simple way.

Example:


Step 1
Open a new Flash document. Select Modify  Document (shortcut key Ctrl+J ). Set the width of your document to 150 pixels and the height to 80 pixels. Select white as background color and click ok.




Step 2


Select the Text tool (T).In the Property Panel below the stage,choose Static Text. Choose any font and color you like and type "Invisible Button"on the stage. See the picture below.



Step 3
Double click on layer 1 to rename its name in text. After that, create a new layer and name it Invisible Button.

Step 4

Select the Invisible Button layer, take the Rectangle Tool (R) ( You will draw a rectangle without the outline colors), so click on Stroke color and choose No color(by clicking on the little paint bucket icon and then on the small square with the red diagonal ). For Fill color choose ##00FFFF and draw a "rectangle" over the text ("Invisible Button").

Step 5

While the "Invisible Button" is still selected, press F8 key (or select Modify > Convert to Symbol ) to convert it into a Button. See the picture below.



Step 6

Double-click on the button on stage with the Selection tool (V).You should now be inside the movie clip.



Step 7

Move the keyframe from the Up state to the Hit state. See the picture below.



Step 8

Go back on the main scene (Scene 1). Now you have the Invisible Button.If you now, test your Movie (Ctrl+Enter), you won't see the "Invisible Button!



Step 9
If you want to link it, select it, open the Action Script Panel (F9), and paste this script:

on (release){
getURL("http://www.flashfridge.com/", "blank");
}

That's it!

Bye!

Downlaod source file (.fla)

Dynamic image button with URL

Posted by Muhammad Shiraz Kamboh 0 comments
In this thoroughly explained, detailed flash lesson, you will see how to create trendy and dynamic image button with URL. You can use this button for any web site. Using this lesson, you will also learn how to import any image into a flash stage, how to convert it into a Movie Clip Symbol, how to animate it, apply action script code on it and much much more! Let's start!

Example:


Step 1

First, save the image below which we'll use as button.






Step 2


Create a new flash document. Press Ctrl+J key on the keyboard (Document Properties) and set the width of your document to 160 pixels and the height to 100 pixels. Select white as background color. Set your Flash movie's frame rate to 32 and click ok.



Step 3

Call the current layer image. Double-click on its default name (Layer 1) to change it. Press Enter once you have typed in the new name!

Step 4
Choose now File > Import > Import to stage (Ctrl+R) and import the image that you saved in step 1!

Step 5

While the image is still selected, press F8 key (Convert to Symbol) to convert it into a Movie Clip Symbol.



Step 6

While the new made Movie Clip (image) is still selected, go to the Align Panel (Ctrl+K) and do the following:

1. Make sure that the Align/Distribute to Stage button is turned on,
2. Click on the Align horizontal center button and
3. Click the Align vertical center button.



Step 7

Double-click on the movie clip (image) on stage with the Selection tool(V).You should now be inside the Movie Clip.



Step 8

While the image is still selected, hit again F8 key (Convert to Symbol) to convert it into a Movie Clip Symbol.



Step 9

Click now on frame 20 and hit F6 key on the keyboard.

Step 10

While you're still on frame 20, select the Selection Tool (V) and click once on the image to select it. After that, go to the Properties Panel (Ctrl+F3) below the stage! Then, select FIlters tab on the left side, click on plus icon and choose Adjust Color. Make the adjustments as follows:



Step 11

Right-click anywhere on the gray area between the two keyframes on the timeline and choose Create Motion Tween from the menu that appears.



Step 12

Create now a new layer above the layer 1 and name it action.

Step 13

Click now on frame 20 and press F6 key.

Step 14

While you're still on frame 20, go to the AS panel (F9) and enter this code inside the actions panel:

stop();

Step 15

Go back now on the first frame, go again to the AS panel (F9) and enter this code inside the actions panel:

stop ();

this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
} this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
this.onRelease = function(){
getURL("http://icatchwebtutorials.blogspot.com/");
}

We're done now!

Go back on the main scene (Scene 1) and test your Movie (Ctrl+Enter).

Have a nice day!

Download source file (.fla)
Posted by Muhammad Shiraz Kamboh 0 comments
This handy HTML 5 reference guide lists all tags supported in the HTML 5 specification. Tags, tag attributes and a listing of tags removed in HTML 5 (valid in HTML 4) are listed in a convenient cheatsheet format. This is the most complete, and up-to-date, HTML5 cheatsheet (reference) around.
 
Features:
  • Complete list of HTML 5 tags
  • HTML4 only tags (color coded for ease of locating)
  • Detailed tag attribute listing with supported values


Addition Resources:

Download

Simple PHP Form Mail Tutorial

Posted by Muhammad Shiraz Kamboh 0 comments
Simple mail form
 
This tutorial will show you how to create a simple form mail that emails a specified email.
The Following Code is the actual form where the input can be typed.






How to create a basic rating system

Posted by Muhammad Shiraz Kamboh 0 comments

How to create a basic rating system

This article shows you how to create a simple and easy to use file based rating system with PHP.
Creating a basic rating system
 In this tutorial I will show you how to create a basic and simple to use rating system. To make the script more simple and database independent we will use simple files to store rating information.

The basics

We divide the task into the following steps:

  • Display a HTML form where a visitor can select a rating.
  • Read the existing results
  • Check if the actual IP exists among the old results
  • Add valid rating to the result list
  • Display the actual rating


Displaying the HTML form

This is an easy part. As usually we create a normal HTML form which is displayed during the first call of the script. As the script itself contains the processing part as well we first check if we really need to display the form or process the submitted data. So the first part of the code looks like this:

echo $_SERVER['PHP_SELF']; ?>" method="post">






Your rating:1 2 3 4 5





Read the existing results

As next step we need to process the user input. In this step we initialize some variables to store total ratings, total points, actual rating. This is quite simple:

$rate = isset ($_POST['rate']) ? $_POST['rate'] : 0;$filename = "ratings";$alreadyRated = false;$totalRates = 0;$totalPoints = 0;
$ip = getenv('REMOTE_ADDR');?>


Afterwards we retrieve the actual user IP. Later we will check if this IP is already present in the result list. If we already have a result from the actual IP then we will ignore the new one. With this solution we can avoid to manipulate our ratings. So we need to open the result file and read it into an array using the file function. Next we iterate over this array and summarize the ratings until now. Of course we also check the IP:

// Read the result file$oldResults = file('results/'.$filename.'.txt');
// Summarize total points and ratesforeach ($oldResults as $value) {
$oneRate = explode(':',$value);
// If our IP is in the list then set the falg
if ($ip == $oneRate[0]) $alreadyRated = true;
$totalRates++;
$totalPoints += $oneRate[1];
}
?>


Now if the rating seems to be valid the we open the result file again and append a new result entry at the end of the file with the actual user IP. Besides this we update the total rating points we have collected in the previous step.

// If our rating is valid then append it to the result fileif ((!$alreadyRated) && ($rate > 0)){
$f = fopen('results/'.$filename.".txt","a+");
fwrite($f,$ip.':'.$rate."\n");
fclose($f);
$totalRates++;
$totalPoints+=$rate;
}
?>


As last step we only need to display the actual rating. We can do this with only displaying a the value or we can displaying some graphics like stars to make it a bit nicer.

echo "Actual rating from $totalRates rates is: "
.substr(($totalPoints/$totalRates),0,3)."
"
;
// Display the actual ratingfor ($i=0;$i<round(($totalPoints/$totalRates),0);$i++){
echo
"";
}
?>


That's all!
You can download a complete rating system as well.

Download Download Micro Rate

Using Photoshop to Colour a Black & White Photo From Scratch

Posted by Muhammad Shiraz Kamboh Monday 11 June 2012 0 comments
Using Photoshop to Colour a Black & White Photo From Scratch
In this tutorial, we’re going to be using Adobe Photoshop to transfrom a black and white photo into a full-colour masterpiece. It’s an unusual technique, but offers a good guide for teaching you about how to use layer masks more effectively in your post-processing work.



Tutorial Details
Program: Photoshop
Completion Time: 2-3 hours
Difficulty: Easy

Text art and ascii Picture Online Generator

Posted by Muhammad Shiraz Kamboh Friday 8 June 2012 0 comments

Text art and ASCII Picture Online Generator

Do you want to make nice ASCII art for your email signature/blog profile like this?
 +-+-+-+-+-+-+      
 |i|C|a|t|c|h|      
 +-+-+-+-+-+-+      
 |W|e|b|            
 +-+-+-+-+-+-+-+-+-+
 |T|u|t|o|r|i|a|l|s|
 +-+-+-+-+-+-+-+-+-+









Then you have to try out these sites:
  1. ASCII Art - Image to ASCII - Text to ASCII: An on-line generator capable of converting text/image to ASCII Art.
  2. Text ASCII Art Generator: An on-line generator that converts text to ASCII as you type!
  3. ASCII Generator: Another ASCII generator with nice fonts.
  4. ASCII Art Generator - Make your picture into text: Another ASCII generator for converting images to ASCII art.

Love shapes ascii art facebook symbols

Posted by Muhammad Shiraz Kamboh Wednesday 6 June 2012 0 comments
Except basic facebook symbols that represents frequent used symbols and special characters and facebook symbols that is rare ones, there is also cool and funny shapes that have been made of all this symbols joined together and looks like this shapes.

Note that some of this facebook symbols can be also used as part of mobile phone messages, not only as part of facebook. You can also use these symbols on twitter, google plus + or wherever you want. Use it wisely and your friends will be delighted.

For good use of these shapes and these don't appears displaced, you can paste the complete shape after typing a point "dot ." and ENTER (or Shift +Enter). This way, the first line of the shape will not appear displaced.

 Bunch of flowers - Bouquet 

....*☆.¸.☆*'
....*☆.@@ ☆*'
.*☆.@@@@☆*'
....@@@@@@
...☆*@@@@`*☆.¸¸
.......\\\||///.
........\\||//.
.........ƸӜƷ.
..........\|/..♥
...........V....


Lovers  facebook symbols:

☻♥ ☻
/♥\./█\
.||. .||

../(,")\♥ ♥(".)
.../♥\. = ./█\.
.._| |_ .._| |_ ★

==============
..........(¯`v´¯)
...........`•.¸.•´
.........(●_•̃)..(●_•̃)
......... /█\ ♥/█\
==============


Love Eyes:  ♥‿♥     ♥‿♥   

•  I love you special font: 

╔♫═╗╔╗ ♥
╚╗╔╝║║♫═╦╦╦╔╗
╔╝╚╗♫╚╣║║║║╔╣
╚═♫╝╚═╩═╩♫╩═╝
ஜ۩۞۩ஜ YOU ஜ۩۞۩ஜ

(¸¸.♥➷♥•*¨)¸.•´¸.•*¨) ¸.•*¨)
(¸.•´(¸. ¸.•´¸.•*¨) ¸.♥➷•*¨)
─▀██▀─▄███▄─▀██─██▀██▀▀▀█─
──██─███─███─██─██─██▄█──conquers
──██─▀██▄██▀─▀█▄█▀─██▀█──all ♥➷♥
─▄██▄▄█▀▀▀─────▀──▄██▄▄▄█
¸.•´¸.•*¨) ¸♥.•*¨) (¸.•´¸♥➷♥¸.•´♥¸.•´♥¸.•*¨)♥.•*¨)¸.•*♥¸


• Footsteps made with facebook symbols: 


----------Oooo---
-----------(----)---
------------)--/----
------------(_/-
----oooO----
----(---)----
-----\--(--
------\_)-
-----------Oooo---
-----------(----)---
------------)--/----
------------(_/-
----oooO----
----(---)----
-----\--(--
------\_)-


•  Happy birthday

╔♫╗────────╔═╦╗─♫╗╔╗─╔╗─♥──
║╩╠═╦═╦═╦╦╗║╚╠╬╦╣╚╣╚╦╝╠═╦╦╗
║╦║╬║╬║╬║║║║╔║║╔╣╔╣║║╬║╬║║║
╚╩╩╩╣╔╣╔╬╗║♫═╩╩╝╚═╩╩╩═╩╩╬╗║
────♫╝╚╝╚═╝─────────────╚═♥
ஜ۩۞۩ஜ YOUR NAME HERE ஜ۩۞۩ஜ


•  Tanks:

███۞███████ ]▄▄▄▄▄▄▄▄▄▄▄▄▃
▂▄▅█████████▅▄▃▂
I███████████████████].
◥⊙▲⊙▲⊙▲⊙▲⊙▲⊙▲⊙◤...

 ..../""""""""|======[]
..../""""""""""""|
/"""""""""""""""""""""""""\
\(@) (@) (@) (@) (@) (@)/

......(\_/)
......( '_')
..../""""""""""""\======░ ▒▓▓█D
/"""""""""""""""""""\
\_@_@_@_@_@_/

•  Bar code for facebook 

║█║▌║█║▌│║▌█║▌║
01031989-50457

 © Profile Original & Official®
█║▌│█│║▌║││█║▌║▌║
Verified Official by facebook


•  Thumb Up facebook symbols (New)

...../ )
.....' /
---' (_____
......... ((__)
..... _ ((___)
....... -'((__)
--.___((_)


░░░░░░░░░░░░▄▄
░░░░░░░░░░░█░░█
░░░░░░░░░░░█░░█
░░░░░░░░░░█░░░█
░░░░░░░░░█░░░░█
███████▄▄█░░░░░██████▄
▓▓▓▓▓▓█░░░░░░░░░░░░░░█
▓▓▓▓▓▓█░░░░░░░░░░░░░░█
▓▓▓▓▓▓█░░░░░░░░░░░░░░█
▓▓▓▓▓▓█░░░░░░░░░░░░░░█
▓▓▓▓▓▓█░░░░░░░░░░░░░░█
▓▓▓▓▓▓█████░░░░░░░░░█
██████▀░░░░▀▀██████▀

╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱
╱╱┏╮╱╱╱╱╱╱╱╱╱╱╱╱
╱╱┃┃╱╱╱┳╱┓┳╭┫┳┓╱
▉━╯┗━╮╱┃╱┃┣┻╮┣╱╱
▉┈┈┈┈┃╱┻┛┛┻╱┻┻┛╱
▉╮┈┈┈┃╱╱╱╱╱╱╱╱╱╱
╱╰━━━╯╱╱╱╱╱╱╱╱╱╱




Halloween facebook symbols:


░░░░░░░░░░░░░░░░░░░░░░
░░░░░▄░░░▄░▄░░░▄░░░░░░
░░░▄███▄░███░▄███▄░░░░
░▄█▀█▀█▀█████▀█▀█▀█▄░░
▀▀░░░░░░░▐░▌░░░░░░░▀▀░
░░░░░░░░░░░░░░░░░░░░░░
░╔╗╔╗╔══╗╔══╗╔══╗╔╗╔╗░
░║╚╝║║╔╗║║╔╗║║╔╗║║╚╝║░
░║╔╗║║╔╗║║╔═╝║╔═╝╚═╗║░
░╠╩╩╩╩╩╩╩╩╩══╩╩════╝║░
░╚══════════════════╝░
░░░║║╔╗║║╔╗║║║╔╔╔╗░░░░
░░░╠╣╠╣║║║║║║║╠╠║║░░░░
░░░║║║║╚╚╚╝╚╩╝╚╚║║░░░░
░░░░░░░░░░░░░░░░░░░░░░

More Halloween facebook symbols, Click here.


• Father's day facebook symbols

╔╗╔╗─────────────╔═╦═╦═╗
║║║╠═╦╦╦═╗╔╦╦═╦╦╗║║║╬║║║▄██▄██▄
║║║║╬║║║╩╣║║║╬║║║║║║║║║║▀█████▀
╚╝╚╩═╩═╩═╝╠╗╠═╩═╝╚═╩╩╩═╝──▀█▀
──────────╚═╝


More Father's day facebook symbols, Click here.


• Mother's day facebook symbols

╔══════════════════╗
║.(¯`♥´¯)´´¯`•°*”˜˜”*°•. ƸӜƷ
║.`*.¸.*.•°*”˜˜”*°•.ƸӜƷ
║.•°*”˜˜”*°•.ƸӜƷ ✶* ¸ .✫ ♥
║✿ нαppy мoтнer´ѕ dαy ✿
╚══════════════════╝

More Mother's day facebook symbols, Click here.


• Easter facebook symbols

******** @-@-@-@********
****** @--------------@******
**** @-------------------@*****
*** @------- нαρρу ------@****
** @-------- єαѕтєя -------@***
** @---(\(\----------/)/)----@***
** @---(=':')-------(':'=)---@***
** @--(..(")(")..(")(")..)----@***
*** @----------------------@****
***** @----------------@******
******** @-@-@-@********

 
More Easter facebook symbols, Click here.


• Thanksgiving Day facebook symbols

╔╗╔╗
║╚╝╠═╗╔═╦═╦╦╗
║╔╗║╬╚╣╬║╬║║║
╚╝╚╩══╣╔╣╔╬╗║
──────╚╝╚╝╚═╝
╔══╦╗──────╔╗╔═╗─╔╗───╔╗
╚╗╔╣╚╦═╗╔═╦╣╠╣═╬═╬╬═╦═╬╬═╦╦═╗
─║║║║║╬╚╣║║║═╬═║╬║╠╗║╔╣║║║║╬║
─╚╝╚╩╩══╩╩═╩╩╩═╬╗╠╝╚═╝╚╩╩═╬╗║
───────────────╚═╝────────╚═╝

∴∴∴∴∴∴∴∴∴∴∴∴∴∴∴∴∴∴∴∴.--.
∴∴∴∴{\∴∴∴∴∴∴∴∴∴∴∴∴∴/∴q∴{\
∴∴∴∴{∴`\∴∴∴∴∴∴∴∴∴.∴∴\∴(-(~`
∴∴∴{∴'.{`\∴∴∴∴∴∴∴∴∴∴∴∴\∴\∴)
∴∴∴{'-{∴'∴\∴∴.-""'-.∴∴∴∴∴∴∴\∴\
∴∴∴{._{'.'∴\/∴∴∴∴.-""'-.-""'-∴∴'.)∴\
∴∴∴{_.{.∴∴∴{`∴∴∴∴∴∴∴∴∴∴∴∴|
∴∴∴{._{∴'∴{∴∴∴;'-=-.∴∴∴∴∴∴∴∴|
∴∴∴∴{-.{.'∴{∴∴';-=-.`∴∴∴∴∴∴∴∴/
∴∴∴∴∴{._.{.;∴∴∴∴'-=-∴∴∴∴∴∴∴.'
∴∴∴∴∴∴{_.-'∴`'.__∴∴∴∴∴∴∴∴_,-'
∴∴∴∴∴∴∴∴∴∴∴∴∴∴|||`
∴∴∴∴∴∴∴∴∴∴∴∴∴∴|_|_>


___.♥ ღ ♥______.♥ ღ ♥
__.♥______♥__♥_____.♥
__.♥____ღHAPPYღ____♥
___.♥.THANKSGIVING.♥
_____♥__(^_^)____♥
_______♥_______♥
_________.ღ ♥ ღ


HAPPY THANKSGIVING DAY
...... `.\.. !. /.'
..... __.,-'''-,.__
........ `-,,,-'......__
........ /____\.`',,'_(
........ ((((...\..// ' ',_)
......... )u.\...)// ' ' '.,_)
......... \_..\.( / ' ' ' ' '.,_)
.......... _)..\.) ' ' ' ' ' ' ,__)
.... /\.__/'-'/.\( ````` , __)
.... \.|__(___/ . .````,__)
..... \|........|`````, __)
...... |......./.`, ` , __)
....... \__,--' \..`--´
........ |.......\
........ |.......|
........ |....... \__
........ |............ \ - ,
........ \_________\ _`-,

HAPPY THANKSGIVING DAY!
░░░░░░░░░░░░░░░░░░░░░░
░░░░░▄▄░░░░▄█████▄░░░░
░░░▐▀▄█▌░░▐▓▓▓▓▓▓█▌░░░
░░░░▐█▌░░░█████▓▓██░░░
░░░░██▄▓▓▓▓▓▓▓██▓█▌░░░
░░░▐▓▓▓████▓▓▓███▌░░░░


Love shapes ascii art facebook symbols - Valentine's day facebook symbols:
Bunch of flowers - Bouquet 


....*☆.¸.☆*'
....*☆.@@ ☆*'
.*☆.@@@@☆*'
....@@@@@@
...☆*@@@@`*☆.¸¸
.......\\\||///.
........\\||//.
.........ƸӜƷ.
..........\|/..♥
...........V....


Lovers  facebook symbols:

☻♥ ☻
/♥\./█\
.||. .||

../(,")\♥ ♥(".)
.../♥\. = ./█\.
.._| |_ .._| |_ ★

==============
..........(¯`v´¯)
...........`•.¸.•´
.........(●_•̃)..(●_•̃)
......... /█\ ♥/█\
==============


Love Eyes:  ♥‿♥     ✿♥‿♥✿




• More cool shapes made with facebook symbols here:

♦ ASCII art big shapes made with facebook symbols.


_____________8__88_____8

____________88_8__8_____8
___________888_____88___88888
__________8888______88_8____88
_________8888_______88______8_8
_________8888_______88______8_8
_________8888_______8_______8
_________8888_____8_______8
__________88888____8______8
___________8888888______8
__888_________88888_8
8888888________88_____
_8888888_______8_____
__888888_______88_____
___88_____8_____8_____
____8______8____8_____8_88
_______8888_8__88_8_88888
_____888888_8_88__8888888
____8888888__88______88888
____88888_____8_________888
____88_________8__________8
_____8_________8_____
_______________8_____
____________8_8_____
_____________88_8_____
______________88_____
______________8_____

Complete list of cool shapes made with facebook symbols

Posted by Muhammad Shiraz Kamboh 0 comments
Except basic facebook symbols that represents frequent used symbols and special characters and facebook symbols that is rare ones, there is also cool and funny shapes that have been made of all this symbols joined together and looks like this shapes.

Note that some of this facebook symbols can be also used as part of mobile phone messages, not only as part of facebook. You can also use these symbols on twitter, google plus + or wherever you want. Use it wisely and your friends will be delighted.

For good use of these shapes and these don't appears displaced, you can paste the complete shape after typing a point "dot ." and ENTER (or Shift +Enter). This way, the first line of the shape will not appear displaced.

Faces:

Group faces 1:  ٩(-̮̮̃-̃)۶  ٩(-̮̮̃•̃)۶  ٩(×̯×)۶

Group faces 2: ⊙▂⊙ .. ⊙0⊙ .. ⊙︿⊙ .. ⊙ω⊙ .. ⊙﹏⊙ .. ⊙△⊙

Group faces 3: ●▂● .. ●︿● .. ●ω● .. ●﹏● .. ●▽● ..

Face 1: ಠ_ಠ

Face 2: ಥ_ಥ

Face 3: ¯\(°_o)/¯

Face 4: ب_ب

Face 5: ◕ ‿ ◕

Face 6: m(><)m

Face 7: o(╥﹏╥)o

Face 8: //(ㄒoㄒ)//

Face 9: {{{(>_<)}}} 

Face 10:   ☼_☼   

Face 10:   ( ( (d[-.-]b) ) )    

Princess Leia StarWars: @-_-@ .. @-.-@ .. @>.<@ 

Love Eyes:  ♥‿♥  

Girls with flowers: 

✿◕‿◕✿  ❀◕‿◕❀    ❁◕‿◕❁    ✾◕‿◕✾


Butterfly:


Butterfly 01:
εїз

Fish:


Fish to right: ><((((º>

Fish to left:
<º))))><


Music:


Music Box: lıllı ((((|̲̅̅●̲̅̅|̲̅̅=̲̅̅|̲̅̅●̲̅̅|)))) ıllı

Ipod:
╔═══╗ ♪
║███║ ♫
║ (●) ♫
╚═══╝♪♪


Men with banner
:

............(0 0)
.---oOO-- (_)-----.
╔═════════════════╗
Type your message ....
╚═════════════════╝
'----------------------oOO
........|__|__|
.......... || ||
....... ooO Ooo

Decorate your signature
*´¨)
¸.•´¸.•*´¨) ¸.•*¨)
(¸.•´ (¸.•` ¤ Type your name here*´¨)



Guns ascii art facebook symbols:

Shotgun: ︻┳═一


Gun Design 1
.....____________________ , ,__
....../ `---___________----_____] - - - - - - - - ░ ▒▓▓█D
...../_==o;;;;;;;;_______.:/
.....), ---.(_(__) /
....// (..) ), ----"
...//___//
..//___//
.//___//

Gun Design 2

....._\____________________,,__
..../ `--│││││││││----------------------_]
.../_==o ____________________
.....),---.(_(__) /
....// (\) ),------
...//___//
../`----' / ...
./____ / ... .



Kirby Dance:


<('o'<) ^( '-' )^ (>‘o’)> v( ‘.’ )v <(' .' )> <('.'<) ^( '.' )^ (>‘.’)> v( ‘.’ )v <(' .' )>




• Cigarette made with facebook symbols:


(̅_̅_̅(̅(̅_̅_̅_̅_̅_̅̅()ڪ


• Health cool shapes: 

Injection: ┣▇▇▇═─

Electrocardiogram: √v^√v^√♥

Band Aid: ( ̲̅:̲̅:̲̅:̲̅[̲̅ ̲̅]̲̅:̲̅:̲̅:̲̅ )


Rabbits and kittens made with facebook symbols:

(\_/)
(0.0)
(><)

( ) ( )
(* .*)
(”__”)

::: (\_(\
*: (=’ :’) :*
•.. (,(”)(”)¤°.¸¸.•´¯`»

(V)
(. .)
c(”)(”)

(\_/)
(°.°)
c(”)(”)

(\_/)
(°.°)
o( )o
O_O

(\__/)
(>’.’<)
(")_(")

(> " " <)
( ='o'= )
-(,,)-(,,)-
(> " " <) (> " " <)
( ='o'= ) ( ='o'= )
-(,,)-(,,)- (,,)-(,,)-...
(> " " <) (> " " <) (> " " <)
( ='o'= ) ( ='o'= ) ( ='o'= )
-(,,)-(,,)- -(,,)-(,,)--(,,)-(,,)-....

•*´¨`*•.¸¸.•*´¨`*•.¸¸.•*´¨`*•.¸¸.•*´¨`*•.¸¸.•
::: (\_(\ ...*...*...*...*...*...*...*...*...*...*...*...*
*: (=' :') :::::::: Facebook Symbols :::::::::::
•.. (,('')('')¤...*...*...*...*...*...*...*...*...*...*...*
¸.•*´¨`*•.¸¸.•*´¨`*•.¸¸.•*´¨`*•.¸¸.•*´¨`*•.¸

HTML/XHTML Character Entities

Posted by Muhammad Shiraz Kamboh Monday 4 June 2012 0 comments
Here is a set of tables containing the 252 allowed entities in HTML 4 and XHTML 1.0, as described in section 24 of the official HTML 4 specifications, published by the W3C. I have divided them into my own, hopefully logical, categories:

Each table has five columns. The first column contains the entity reference, in the form &entity_name;, that is, an ampersand, the entity name, and then a semi colon. The second column displays how that entity appears in your browser. The proper character will only appear if you have a font that can display it. The third column contains the number reference for the same character in the form &#number;, that is, an ampersand, a hash symbol (which signals that a number reference is coming), the character's number, and then a semi colon. The fourth column shows how the number reference displays in your browser. Again, the proper character is only displayed if the default font selected in your browser preferences contains such a character.
The fifth column contains a description of the character, and an occasional note. You can either hover over the note link to see the note, or click it to go the notes page, which will open in a separate window.
There are many ways to order character entities. You can order them alphabetically, by number, or by Unicode collection, to mention just a few methods. I find all of these rather arbitrary. So, I have taken the liberty of classifying them into what I consider logical categories, and sometimes subcategories, and then by alphabetical order. I hope you find it useful. And don't forget, you can always use your browser's Find command to find a particular word or phrase within this page.

About Full Source of HTML - Clean Code

Posted by Muhammad Shiraz Kamboh 0 comments
Welcome to HTML Source! Come in, look around. Don’t be overwhelmed by the ample bounty of HTML tutorials available, each packed with in-depth expert advice, full diagrams and miraculous wit. Yep, I’m blowing my own trumpet here. I hope you know what I mean by that...

Have a look in the navigation bar on the right there to begin your journey. If you are just starting your illustrious HTML career, have a leaf through the two “Starting Off” sections. If you want more specific tutorials check out the in-depth “Lessons” on each aspect of HTML and CSS, and if you’re well-versed in the arts of web development you should read the “Advanced” stuff. You can also get technical with the “Scripting” tutorials. Finally, the HTML Reference charts and whatnot are in a table further down this page. If you want to find a certain tutorial fast, use the Search box at the top there.

HTML & CSS Color Codes Lab

Posted by Muhammad Shiraz Kamboh 0 comments
#f0f8ff: alice blue
#faebd7: antique white
#ffefdb: antique white 1
#eedfcc: antique white 2
#cdc0b0: antique white 3
#8b8378: antique white 4
#32bfc1: aquamarine
#7fffd4: aquamarine 1
#76eec6: aquamarine 2
#66cdaa: aquamarine 3
#458b74: aquamarine 4 
#f0ffff: azure
#e0cdcd: azure 1
#e0eeee: azure 2
#c1cdcd: azure 3
#838b8b: azure 4
#f5f5dc: beige
#ffe4c4: bisque 1
#eed5b7: bisque 2
#cdb79e: bisque 3
#8b7d6b: bisque 4
#ffe4c4: blanched almond
#0000ff: blue
#0000ee: blue 1
#0000cd: blue 2
#00008b: blue 3
#8a2be2: blue-violet
#a52a2a: brown
#ff4040: brown 1
#ee3b3b: brown 2
#cd3333: brown 3
#8b2323: brown 4
#deb887: burlywood
#ffd39b: burlywood 2
#cdaa7d: burlywood 3
#8b7355: burlywood 4
#5f929e: cadet blue
#98f5ff: cadet blue 1
#8ee5ee: cadet blue 2
#7ac5cd: cadet blue 3
#53868b: cadet blue 4
#7fff00: chartreuse 1
#76ee00: chartreuse 2
#66cd00: chartreuse 3
#458b00: chartreuse 4
#ff7256: coral 1
#ee6a50: coral 2
#cd5b45: coral 3
#8b3e2f: coral 4
#222298: cornflower blue
#fff8dc: cornsilk 1
#eee8cd: cornsilk 2
#cdc8b1: cornsilk 3
#8b8878: cornsilk 4
#00ffff: cyan 1
#00eeee: cyan 2
#00cdcd: cyan 3
#008b8b: cyan 4
#bdb76b: dark
#b8860b: dark goldenrod
#ffb90f: dark goldenrod 1
#eead0e: dark goldenrod 2
#cd950c: dark goldenrod 3
#8b6508: dark goldenrod 4
#00562d: dark green
#bdb76b: dark khaki
#de00a5: dark nessy
#55562f: dark olivegreen
#ff69b4: hot pink
#ff6eb4: hot pink 1
#ee6aa7: hot pink 2
#cd6090: hot pink 3
#8b3a62: hot pink 4
#6b3939: indian red
#ff6a6a: indian red 1
#ee6363: indian red 2
#cd5555: indian red 3
#8b3a3a: indian red 4
#fffff0: ivory 1
#eeeee0: ivory 2
#cdcdc1: ivory 3
#8b8b83: ivory 4
#b3b37e: khaki
#fff68f: khaki 1
#eee685: khaki 2
#cdc673: khaki 3
#8b864e: khaki 4
#e6e6fa: lavander
#fff0f5: lavender blush 1
#eee0e5: lavender blush 2
#cdc1c5: lavender blush 3
#8b8386: lavender blush 4
#7cfc00: lawn green
#fffacd: lemon chiffon 1
#eee9bf: lemon chiffon 2
#cdc9a5: lemon chiffon 3
#8b8970: lemon chiffon 4
#f08080: light
#b0e2ff: light blue
#bfefff: light blue 1
#b2dfee: light blue 2
#9ac0cd: light blue 3
#68838b: light blue 4
#f08080: light coral
#e0ffff: light cyan 1
#d1eeee: light cyan 2
#b4cdcd: light cyan 3
#7a8b8b: light cyan 4
#eedd82: light goldenrod
#ffec8b: light goldenrod 1
#eedc82: light goldenrod 2
#cdbe70: light goldenrod 3
#8b814c: light goldenrod 4
#fafad2: light goldenrod yellow
#ff80d2: light nessy
#ffb6c1: light pink
#ffaeb9: light pink 1
#eea2ad: light pink 2
#cd8c95: light pink 3
#8b5f65: light pink 4
#ffa07a: light salmon 1
#ee9572: light salmon 2
#cd8162: light salmon 3
#8b5742: light salmon 4
#20b2aa: light seagreen
#87cefa: light skyblue
#b0e2ff: light skyblue 1
#a4d3ee: light skyblue 2
#8db6cd: light skyblue 3
#607b8b: light skyblue 4
#8470ff: light slate blue
#778899: light slate gray
#7c98d3: light steel blue
#cae1ff: light steel blue 1
#bcd2ee: light steel blue 2
#a2b5cd: light steel blue 3
#6e7b8b: light steel blue 4
#ffffe0: light yellow 1
#eeeed1: light yellow 2
#cdcdb4: light yellow 3
#8b8b7a: light yellow 4
#00af14: lime green
#faf0e6: linen
#ff00ff: magenta 1
#ee00ee: magenta 2
#cd00cd: magenta 3
#8b008b: magenta 4
#8f0052: maroon
#ff34b3: maroon 1
#ee30a7: maroon 2
#cd2900: maroon 3
#8b1c62: maroon 4
#d1c166: medium
#00938f: med aquamarine
#3232cc: med blue
#32814b: med forest green
#d1c166: med goldenrod
#bd52bd: med orchid
#e066ff: med orchid 1
#d15fee: med orchid 2
#b452cd: med orchid 3
#7a378b: med orchid 4
#9370db: med purple
#ab82ff: med purple 1
#9f79ee: med purple 2
#8968cd: med purple 3
#5d478b: med purple 4
#347766: med sea green
#6a6a8d: med slate blue
#238e23: med spring green
#00d2d2: med turquoise
#d52079: med violet red
#2f2f64: med night blue
#f5fffa: mint cream
#ffe4e1: misty rose
#eed5d2: misty rose 2
#cdb7b5: misty rose 3
#8b7d7b: misty rose 4
#ffe4b5: moccasin
#ffdead: navajo white
#eecfa1: navajo white 2
#cdb38b: navajo white 3
#8b795e: navajo white 4
#232375: navy blue
#ff42d2: nessy
#fdf5e6: old lace
#6b8e23: olive drab
#c0ff3e: olive drab 1
#b3ee3a: olive drab 2
#9acd32: olive drab 3
#698b22: olive drab 4
#ffa500: orange
#ee9a00: orange 2
#cd8500: orange 3
#8b5a00: orange 4
#ff4500: orange-red
#ee4000: orange-red 2
#cd3700: orange-red 3
#8b2500: orange-red 4
#ef84ef: orchid
#ff83fa: orchid 2
#ee7ae9: orchid 3
#cd69c9: orchid 4
#8b4789: orchid 5
#caff70: dark olivegreen 1
#bcee68: dark olivegreen 2
#a2cd5a: dark olivegreen 3
#6e8b3d: dark olivegreen 4
#ff8c00: orange
#ff7f00: dark orange 1
#ee7600: dark orange 2
#cd6600: dark orange 3
#8b4500: dark orange 4
#8b208b: dark orchid
#bf3eff: dark orchid 1
#b23aee: dark orchid 2
#9a32cd: dark orchid 3
#68228b: dark orchid 4
#e9967a: dark salmon
#8fbc8f: dark seagreen
#c1ffc1: dark seagreen 1
#b4eeb4: dark seagreen 2
#9bcd9b: dark seagreen 3
#698b69: dark seagreen 4
#384b66: dark slate blue
#2f4f4f: dark slate gray
#97ffff: dark slate gray 1
#8deeee: dark slate gray 2
#79cdcd: dark slate gray 3
#528b8b: dark slate gray 4
#00a6a6: dark turquoise
#9400d3: dark violet
#ff1493: dark pink 1
#ee1289: dark pink 2
#cd1076: dark pink 3
#8b0a50: dark pink 4
#00bfff: deep skyblue 1
#00b2ee: deep skyblue 2
#009acd: deep skyblue 3
#00688b: deep skyblue 4
#1e90ff: dodger blue 1
#1c86ee: dodger blue 2
#1874cd: dodger blue 3
#104e8b: dodger blue 4
#8e2323: firebrick
#ff3030: firebrick 1
#ee2c2c: firebrick 2
#cd2626: firebrick 3
#8b1a1a: firebrick 4
#fffaf0: foral white
#509f69: forest green
#dcdcdc: gainsboro
#f8f8ff: ghost white
#daaa00: gold
#ffd700: gold 1
#eec900: gold 2
#cdad00: gold 3
#8b7500: gold 4
#efdf84: goldenrod
#ffc125: goldenrod 1
#eeb422: goldenrod 2
#cd9b1d: goldenrod 3
#8b6914: goldenrod 4
#00ff00: green
#00ee00: green 2
#00cd00: green 3
#008b00: green 4
#adff2f: green-yellow
#f0fff0: honeydew 1
#e0eee0: honeydew 2
#c1cdc1: honeydew 3
#838b83: honeydew 4
#73de78: pale
#eee8aa: pale goldenrod
#73de78: pale green
#9aff9a: pale green 1
#90ee90: pale green 2
#7ccd7c: pale green 3
#548b54: pale green 4
#afeeee: pale turquoise
#bbffff: pale turquoise 1
#aeeeee: pale turquoise 2
#96cdcd: pale turquoise 3
#668b8b: pale turquoise 4
#db7093: pale violet-red
#ff82ab: pale violet-red 1
#ee799f: pale violet-red 2
#cd6889: pale violet-red 3
#8b475d: pale violet-red 4
#ffefd5: papaya
#ffdab9: peach puff 1
#eecbad: peach puff 2
#cdaf95: peach puff 3
#8b7765: peach puff 4
#cd853f: peru3
#ffb5c5: pink 1
#eea9b8: pink 2
#cd919e: pink 3
#8b636c: pink 4
#c5489b: plum 1
#eeaeee: plum 2
#cd96cd: plum 3
#8b668b: plum 4
#b0e0e6: powder blue
#a020f0: purple
#9b30ff: purple 1
#912cee: purple 2
#7d26cd: purple 3
#551a8b: purple 4
#ff0000: red
#ee0000: red 2
#cd0000: red 3
#8b0000: red 4
#bc8f8f: rosy brown
#ffc1c1: rosy brown 1
#eeb4b4: rosy brown 2
#cd9b9b: rosy brown 3
#8b6969: rosy brown 4
#4169e1: royal blue
#4876ff: royal blue 1
#436eee: royal blue 2
#3a5fcd: royal blue 3
#27408b: royal blue 4
#8b4513: saddle brown
#e9967a: salmon
#ff8c69: salmon 1
#ee8262: salmon 2
#cd7054: salmon 3
#8b4c39: salmon 4
#f4a460: sandy brown
#529584: sea green
#54ff9f: sea green 1
#4eee94: sea green 2
#43cd80: sea green 3
#2e8b57: sea green 4
#fff5ee: seashell 1
#eee5de: seashell 2
#cdc5bf: seashell 3
#8b8682: seashell 4
#96522d: sienna
#ff8247: sienna 1
#ee7942: sienna 2
#cd6839: sienna 3
#8b4726: sienna 4
#729fff: sky blue
#87ceff: sky blue 1
#7ec0ee: sky blue 2
#4a708b: sky blue 3
#7e88ab: slate blue
#836fff: slate blue 1
#7a67ee: slate blue 2
#6959cd: slate blue 3
#473c8b: slate blue 4
#708090: slate gray
#c6e2ff: slate gray 1
#b9d3ee: slate gray 2
#9fb6cd: slate gray 3
#6c7b8b: slate gray 4
#fffafa: snow 1
#eee9e9: snow 2
#cdc9c9: snow 3
#8b8989: snow 4
#41ac41: spring green
#00ff7f: spring green 1
#00ee76: spring green 2
#00cd66: spring green 3
#008b45: spring green 4
#5470aa: steel blue
#63b8ff: steel blue 1
#5cacee: steel blue 2
#4f94cd: steel blue 3
#36648b: steel blue 4
#deb887: tab
#ffa54f: tan 1
#ee9a49: tan 2
#cd853f: tan 3
#8b5a2b: tan 4
#d8bfd8: thistle
#ffe1ff: thistle 1
#eed2ee: thistle 2
#cdb5cd: thistle 3
#8b7b8b: thistle 4
#ff6347: tomato 1
#ee5c42: tomato 2
#cd4f39: tomato 3
#8b3626: tomato 4
#000001: transparent
#19ccdf: turquoise
#00f5ff: turquoise 1
#00e5ee: turquoise 2
#00c5cd: turquoise 3
#00868b: turqouoise 4
#9c3ece: violet
#f33e96: violet-red
#ff3e96: violet-red 1
#ee3a8c: violet-red 2
#cd3278: violet-red 3
#8b2252: violet-red 4
#f5deb3: wheat
#ffe7ba: wheat 1
#eed8ae: wheat 2
#cdba96: wheat 3
#8b7e66: wheat 4
#f5f5f5: white smoke
#ffff00: yellow
#eeee00: yellow 2
#cdcd00: yellow 3
#8b8b00: yellow 4
#32d838: yellow-green

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