Computer Networking concepts

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.