Posts

How to create sing up form

Image
<!Doctype > <html> <head> <title> How to create sing up form </title> </head> <body> <table border="2"> <caption> How to create sing up form </caption> <tr> <th> First name </th> <td>  <input type="text" size="10"></td> </tr> <tr> <th> Last name </th> <td>  <input type="text" size="10"></td> </tr> <tr> <th> Email-Id</th> <td>  <input type="text" size="10"></td> </tr> <tr> <th> Contact no</th> <td>  <input type="text" size="10"></td> </tr> <tr> <th> Gender</th> <td> Input type="text" size="10"> > </td> </tr> <tr> ...

How to find background color?

Image
<Html> <head> <Title>  Find background color </title> </head> <body bgcolor="pink">  <p> This code type note pad and save as   anyname.html, and run any browser  find background color</p> </body> </html> Find background color This code type note pad and save as anyname.html, and run any browser find background color

Easy and simple php code

<!Doctype> <html> <body> <?php echo"hello world" ?> </body> </html>  What you should already know HTML CSS JAVASCRIPT What is php ? php is an acronym for php hypertext preprocessor, PHP is a widely used open source scripting  language  PHP Scropts are executed on the server  Php  is free to download and use  <div dir="ltr" style="text-align: left;" trbidi="on"> <i>&lt;!Doctype&gt;</i><br /><i>&lt;html&gt;</i><br /> <i>&lt;body&gt;</i><br /> <i>&lt;?php</i><br /> <i>echo"hello world"</i><br /> <i>?&gt;</i><br /> <i>&lt;/body&gt;</i><br /> <i>&lt;/html&gt;&nbsp;</i><br /> <!Doctype> <html> <body> <?php echo"hello world...

Hou to simple css easy code

 <!doctype> <html> <head> <<style> body { background-color:blue; } h1 { text-size:20px; bgcolor:yellow; } </style> <h> This is the first css heading <h1> </body> </html>

Simple and easy pragraph code

......

This is a paragraph This is second line <!Doctype html> <head> <title> Simple pragraph</title> </head> <body> <heading> Simple and easy paragrph code </heading> </br> <p>Line paragraph code </p> </body> </html> 

Html Multiple heading font color

Image
 Hhtml (hyper text markup language  heading is 6 type  <!Doctype html>   <html> <head> <title> Html Multiple heading font color </title> </head> <body> <H1> <font size="" color="Green">  First heading color </h1> </br> <h2> <font size="" color="red"> secont heading color is red </h2> </br> <h3> <font size="7" color="blue"> Heading third color is blue </h3> </br> <h4> <font size="8" color="grey"> Heading fourth color is grey </h4> </body> </html>

Beautiful and simple template

Image
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title></title>     <asp:ContentPlaceHolder id="head" runat="server">     </asp:ContentPlaceHolder> </head> <body>     <form id="form1" runat="server">     <div>         <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">                      <asp:Image ID="Image1" runat="server" Height="70px" ImageUrl="~/1.png"                  style="margin-top: 6px" Width="252px" /> ...