Design Google Page Using HTML 5

Here, <link> tag contains rel attribute which is used to control printing of various language. <html> <head> <title>Google</title> <link rel=”stylesheet”href=”https://fonts.googleapis.com/css?family=Tangerine”> </head> <body> <table align=”right” cellpadding=”5″ cellspacing=”5″ > <td><a href=”” style=”color:black;text-decoration:none”>Gmail</a></td> <td><a href=”” style=”color:black;text-decoration:none”>Images</a></td> <td><img src=”gmenu.png” style=”width:25px ; height:25px” /> <td><input type=”submit” value=”Sign in” style=”width:70px ;… Read More »Design Google Page Using HTML 5

Use Of Div Tag

<div> tag is used to create the container in webpage. It will used to design some portion of webpage. <html> <head> <title>Content</title> </head> <body bgcolor=”brown”> <div style=”background-color:grey;color:white;font-size:25px” align=”center”> <p>Different Types Of Functions Are Displayed Here…</p> <p>Content Display Here</p></h1> </div> </body> </html> OutPut

Simple Design Contact Form

<html> <head> <title>Contact Form</title> <style type=”text/css”> td { font-size: 15pt; } </style> </head> <body align=”center” bgcolor=”#83ccd2″> <h2><b><u>CONTACT FORM</u></b></h2> <form method=”post” name=”contactform” action=”cform.php”> <table align=”center” border=3 bordercolor=”black”> <tr> <td>Name : </td> <td><input type=”text” name=”name” placeholder=”Firstname Secondname Lastname” size=”40″ required></td> </tr> <tr> <td>Email : </td> <td><input type=”email”… Read More »Simple Design Contact Form

Fibonacci Series With Recursion And Without Recursion

There are two ways to write the Fibonacci Series program: Fibonacci Series without recursion Fibonacci Series using recursion Fibonacci Series Without Recursion #include<stdio.h> #include<conio.h> void main() { int n1=0,n2=1,n3,i,number; clrscr(); printf(“Enter the number of elements:”); scanf(“%d”,&number); printf(“\n%d %d”,n1,n2); //print 0 and 1 for(i=2;i<number;++i) //loop starts… Read More »Fibonacci Series With Recursion And Without Recursion