Computer Networking concepts

Thursday 27 March 2014

CSS INTRODUCTION

INTRODUCTION OF CSS
CSS was first developed in 1997, as a way for Web developers to define the look and feel of their Web pages. It was intended to allow developers to separate content from design so that HTML could perform more of the function that it was originally based on - the markup of content, without worry about the design and layout.
WHERE CSS USED?

CSS is used to style Web pages. But there is more to it than that. CSS is used to style XHTML and XML markup. This means that anywhere you have XML markup (including XHTML) you can use CSS to define how it will look.
CSS is also used to define how Web pages should look when viewed in other media than a Web browser. For example, you can create a print style sheet that will define how the Web page should print out and another style sheet to display the Web page on a projector for a slide show.
It may be three types:
  1. Internal CSS
  2. External CSS
  3. Inline CSS
  4. In-line
  5. In-line styles are plonked straight into the HTML tags using the  style attribute.
  6. They look something like this:
7.   
8.   <p style="color: red">text</p>
  1. Internal
  2. Embedded, or internal, styles are used for the whole page. Inside the head element, the style tags surround all of the styles for the page.

<!DOCTYPE html>
<html>
<head>
<title>CSS Example</title>
<style>

    p {
        color: red;
    }

    a {
        color: blue;
    }

</style>
External
External styles are used for the whole, multiple-page website. There is a separate CSS file, which will simply look something like:

p {
    color: red;
}

a {
    color: blue;
}
If this file is saved as “style.css” in the same directory as your HTML page then it can be linked to in the HTML like this:

<!DOCTYPE html>
<html>
<head>
    <title>CSS Example</title>
    <link rel="stylesheet" href="style.css">

Apply!

<!DOCTYPE html>
<html>
<head>
    <title>My first web page</title>
    <link rel="stylesheet" href="style.css">
</head>

Wednesday 26 March 2014

JOKE

Lets fresh our mind:-

Sales man: Just look at that young person with the short hair and blue jeans. Is it a boy or a girl?Customer : It's a girl. She's my daughter.Sales man : Oh, I'm sorry, sir. I didn't know that you were her father.Customer : I'm not. I'm her mother :P

GTA SAN ANDREAS CHEATS

I know all of you are lovers of games. I am the lover of gta san Andreas, so lets make it easy to remember all cheats, simply click my blogger.

So this is the list of all cheats:- 

Enter these cheats while playing, don't press pause. It is not advised to save your game with cheats enabled. From the following list, pick the type of cheat you are looking for, or just browse through the list and see what catches your eye.

•      Weapons, Health, Armor & Money
•      Police, Stats & Gangs
•      Spawning Objects
•      Vehicles
•       Gameplay
•       Weather & Time


Keep an eye on this GTAForums thread for all the latest cheats.


Weapons, Health, Armor & Money


LXGIWYL = Weapon Set 1, Thug's Tools
PROFESSIONALSKIT = Weapon Set 2, Professional Tools
UZUMYMW = Weapon Set 3, Nutter Tools
HESOYAM = Health, Armor, $250k
BAGUVIX = Semi-Infinite Health
CVWKXAM = Infinite Oxygen
ANOSEONGLASS = Adrenaline Mode
FULLCLIP = Infinite Ammo, No Reload



 Police, Stats & Gangs 

TURNUPTHEHEAT = Increase Wanted Level Two Stars
TURNDOWNTHEHEAT = Clear Wanted Level
BTCDBCB = Fat
BUFFMEUP = Max Muscle
KVGYZQK = Skinny
AEZAKMI = Never Wanted
BRINGITON = Six Star Wanted Level
WORSHIPME = Max Respect
HELLOLADIES = Max Sex Appeal
VKYPQCF = Max Stamina
PROFESSIONALKILLER = Hitman In All Weapon Stats
NATURALTALENT = Max All Vehicle Skill Stats



 Spawning Objects 

AIWPRTON = Spawn Rhino
OLDSPEEDDEMON = Spawn Bloodring Banger
JQNTDMH = Spawn Rancher
VROCKPOKEY = Spawn Racecar
VPJTQWV = Spawn Racecar
WHERESTHEFUNERAL = Spawn Romero
CELEBRITYSTATUS = Spawn Stretch
TRUEGRIME = Spawn Trashmaster
RZHSUEW = Spawn Caddy
JUMPJET = Spawn Hydra
KGGGDKP = Spawn Vortex Hovercraft
AIYPWZQP = Have Parachute
ROCKETMAN = Have Jetpack
OHDUDE = Spawn Hunter
FOURWHEELFUN = Spawn Quad
AMOMHRER = Spawn Tanker Truck
ITSALLBULL = Spawn Dozer
FLYINGTOSTUNT = Spawn Stunt Plane
MONSTERMASH = Spawn Monster

 Vehicles 

CPKTNWT = Blow Up All Cars
WHEELSONLYPLEASE = Invisible car
STICKLIKEGLUE = Perfect Handling
ZEIIVG = All green lights
YLTEICZ = Aggressive Drivers
LLQPFBN = Pink traffic
IOWDLAC = Black traffic
FLYINGFISH = Boats fly
EVERYONEISPOOR = Traffic is Cheap Cars
EVERYONEISRICH = Traffic is Fast Cars
CHITTYCHITTYBANGBANG = Cars Fly
JCNRUAD = Smash n' Boom
SPEEDFREAK = All Cars Have Nitro
BUBBLECARS = Cars Float Away When Hit
OUIQDMW = Free Aim While Driving
GHOSTTOWN = Reduced Traffic
FVTMNBZ = Traffic is Country Vehicles
BMTPWHR = Country Vehicles and Peds, Get Born 2 Truck Outfit

 Gameplay 

SPEEDITUP = Faster Gameplay
SLOWITDOWN = Slower Gameplay
AJLOJYQY = Peds Attack Each Other, Get Golf Club
BAGOWPG = Have a bounty on your head
FOOOXFT = Everyone is armed
GOODBYECRUELWORLD = Suicide
BLUESUEDESHOES = Elvis is Everywhere
BGLUAWML = Peds Attack You With Weapons, Rocket Launcher
LIFESABEACH= Beach Party
ONLYHOMIESALLOWED = Gang Members Everywhere
BIFBUZZ = Gangs Control the Streets
NINJATOWN = Ninja Theme
BEKKNQV = Slut Magnet
CJPHONEHOME = Huge Bunny Hop
KANGAROO = Mega Jump
STATEOFEMERGENCY = Riot Mode
CRAZYTOWN = Funhouse Theme
SJMAHPE = Recruit Anyone (9mm)
ROCKETMAYHEM = Recruit Anyone (Rockets)

 Weather & Time 

PLEASANTLYWARM = Sunny Weather
TOODAMNHOT = Very Sunny Weather
ALNSFMZO = Overcast Weather
AUIFRVQS = Rainy Weather
CFVFGMJ = Foggy Weather
YSOHNUL = Faster Clock
NIGHTPROWLER = Always Midnight
OFVIAC = Orange Sky 21:00
SCOTTISHSUMMER = Thunderstorm
CWJXUOC = Sandstorm


Friday 14 March 2014

HTML

Hello friends, Today i am going to show you how to create table with border in HTML.


<html>
<head>
<style>  (this is the table style )
table,th,td
{
border:1px solid black;
}
</style>
</head>

<body>
<table style="width:300px">
<tr>
  <td>Rahee</td>
  <td>Sanju</td>
  <td>50</td>
  </tr>
<tr>
  <td>Shubham</td>
  <td>Rohit</td>
  <td>94</td>
</tr>
<tr>
  <td>Golu</td>
  <td>joe</td>
  <td>80</td>
</tr>
</table>
</body>
</html>

You guys must try this by yourself this is so interesting and pretty easy. Keep watching and keep learning HTML.

Friday 28 February 2014

HTML

Checkbox and buttons 


Hello everyone today i am gonna tell you about checkbox and button. How to create a checkbox and button in HTML. This is pretty easy, without wasting our time we should start :-

<html>
<body>
<form name="input" action="html_form_action.asp" method="get">
<input type="checkbox" name="vehicle" value="Bike">I have a bike<br>(br is line break)
<input type="checkbox" name="vehicle" value="Car">I have a car 
<br><br>
<input type="submit" value="Submit">
Now we have to close all tags that we have open above 
</form> 
</body>
</html>
 

This new chapter is so excited for me, now you should try this for yourself. Hope you guys like that.

Wednesday 26 February 2014

CONTACT INFORMATION 

Hello every one, Today i will tell you how to add your contact information in any document with the help of HTML tags. So lets start,
< html>
<body>
<address>
Written by tekchandrahi.blogspot.com<br> (br is line break in HTML)
<a href="tekchandrahee7@gmail.com">Email us</a><br> (a href= this is for link creation)
Address: H.N. 203c Adarshs Nagar, Naya Gaon, Mohali<br>
Phone: +919625423418
</address>
</body>
</html>


Versions of HTML

Since the early days of web, there have been many versions of HTML. So let us start one by one. There are seven versions of HTML listed below.
I will tell you name of the version and when it come.

Version                                                                          Year
HTML                                                                            1991
HTML+                                                                          1993
HTML 2.0                                                                       1995
HTML 3.2                                                                       1997
HTML 4.01                                                                      1999
XHTML                                                                           2000
HTML 5                                                                           2012

So these are all versions of HTML.

Tuesday 18 February 2014

HTML Tutorial:-

How to add audio and video files in HTML, if this question came in my mind, so this can come in anyone's. Don't worry friends let me solve this question for all of you. Now we have a topic or question that "How to add audio and video file in HTML.
Let us start, 
<html>
<head>
<title>This is the title</title>
</head>
<body>
</h1>you can write  anything here</h1>
<video control>   (this tag is for video controls)
<source src="name of the file.mp4 type="video/mp4"> (HTML supports only .mp4 video files)
</video>

</body>
</html>
for audio :-
<audio control>
<source src="name of the file.mp3" type="audio/mp3>
Rest of above coding will be same 








if you have any query or complaint , you can contact me
tekchand030@gmail.com
tekchandrahee7@gmail.com

Basics of HTML 2

I have already told you the very basic codes of HTML, Now i will tell you more codes. 
Now i am going to tell you how to add an image in HTML, this is such simple as we have done the previous coding.
<html>
<head>
<title>Give your title here</title>
</head>
<body>
<img src="location of the image\name of the image">
you can also set the size of image, if you do the above coding, the image size will remain default without giving any size.
<img src="location of the image\name of the image" height="as you wish" width="whatever you need"></img src>
</body>
</html>
so this is the coding for image adding in HTML.

Basics of HTML

Let me tell you basics of HTML :-
HTML stands for Hyper text Markup language. It is very popular language in the world,with the help of HTML language we can easily develop any website. Now, i am not going to theory part, i am going to tell you basic codes of HTML.
when you start your coding the first tag is  
<html>   at the end of the coding you have to close that tag like this </html>, Now see the whole coding :-


<html>
<head>this is the head.
<title>this is the title</title>
</head>
<body>you can write anything in this place, this all will come in your body of the website.
</body>
</html>

Sunday 16 February 2014

C programming language

What is C language ?

It is a high level language developed by Dennis Ritchie at Bell Labs in the mid 1970s. Although originally designed as a systems programming language C has proved to be a powerful and flexible language that can be used for a variety of application from business programs to  to engineering. C is a particularly popular language of personal computers because it is relatively small - it requires less memory than other languages.
The first major program written in C was the UNIX operating system, and for many years C was considered to be inextricably linked with UNIX. Now a days C is  independent of UNIX and very important.
Although it is a high-level language, C is much closer to assembly language than are most other high-level languages. This closeness to the underlying machine language allows C programmers to write very efficient code.

what is Android ? 

Android is an operating system based on the Linux kernel, and designed primarily for touchscreen mobile devices such as smartphones and tablet computers. Initially developed by Android, Inc., which Google backed financially and later bought in 2005, Android was unveiled in 2007 along with the founding of the Open Handset Alliance: a consortium of hardware, software, and telecommunication companies devoted to advancing open standards for mobile devices. The first publicly available smartphone running Android, the HTC Dream, was released on October 22, 2008.
The user interface of Android is based on direct manipulation, using touch inputs that loosely correspond to real-world actions, like swiping, tapping, pinching and reverse pinching to manipulate on-screen objects. Internal hardware such as accelerometersgyroscopes and proximity sensors are used by some applications to respond to additional user actions, for example adjusting the screen from portrait to landscape depending on how the device is oriented. Android allows users to customize their home screens with shortcuts to applications and widgets, which allow users to display live content, such as emails and weather information, directly on the home screen. Applications can further send notifications to the user to inform them of relevant information, such as new emails and text messages.

What is an IP address :-

In simple terms, its a number that consists of four numbers, separated by periods, that can be between 0 and 255. This number identifies the device (comptuer) that is connected to the Internet, which is a TCP/IP network. It is like the address of your house, but instead of a house number, street, city, state, zipcode, it looks something like this: 127.0.0.1
Each device on the Internet gets assigned a unique IP Address. No two devices can have the same IP Address just like no two houses on your street have the exact same address.

For what is an IP address:-

When your computer is on the Internet, anything you do requires data to be transmitted and received. For example, when you visit a web site, such as tekchandrahi.blogspot.com, data is transmitted to your computer in order to load the content of the web page. The server where tekchandrahi.blogspot.com is located needs to know where to send the data. When you connect to tekchandrahi.blogspot.com, it receives your IP Address and then knows where to send the data. For example, someone that needs to mail you a letter has to know your address in order to send it to you just like a server needs to know your IP Address to send you data.


Saturday 15 February 2014

About Internet

This page is all about how  we all going to advance technology day by day due to best invention by our inventor, we are very thank full to that for our elders.

 The world as we know it is run over a network that connects all of us. We know this network as the internet. The internet is one connection after another, making long distance communication and the sharing of videos/pictures possible, and its all done by signals being carried across the globe.

     Long distance communication was not easy during the time of writing letters. It could take weeks or even months for a letter to get to its final destination. That was all changed with the invention of the telephone. The telephone allowed sound to be carried over vast amounts of distance, but nothing compares to the internet. The internet allowed us to show our faces from the US to China in a matter of milliseconds. The communication from the internet has changed social lives, people and the greatest of all it has allowed businesses to be ran from anywhere on the globe.

     Pictures and Videos can now be easily carried across the globe. These ,what would be known as media devices, can be sent or received anywhere around the world, making sharing ourselves that much easier. Media lets us connect with each other, and lets us capture the world around us. With media we can make the world stand still. Sharing media has become extremely popular with sites being released such as, YouTube, Myspace, Facebook, and every other website created for the sole purpose of sharing your life with others.

     Signals are carried through wires and are now even put out without wires to carry them. These signals carry everything from phone calls to pictures to files, over the internet and allow them to connect anywhere at anytime to anyone.  

 


Monday 10 February 2014