Posts

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" /> ...