Posts

How to type code css background color

 The css background   color  are used to defines the background  effects for elements , Css background properties   Background-color Background-Image Background-repeat Background-Attachement Background-POSITION  BACKGROUND CODE <!Doctype html> <html> <head> Body { Background:-color:Lightblue; } </style> </head> <H1> Hello!</h1> </Body> </Html> Body { Background:-color:Lightblue; } Hello!

Css colors code

Colors are specified using predefined color names or  Rgb HEX NSL RGBA HSCA NSL     Looking here  css codeing  <!Doctype html> <html> <head> <body> <style> <H1 style="background-color:orange;"> Orange</h1> <h2 style ="background-color:Blue;"> Blue</h2> <H3 style="Background -color:black;"> </h3> <h4 style=background-color:Pink;"> Pink</h4> </style> </head> </body> </html> 

welcome to css

CSS STAND FOR CASCADING STYLE SHEETS      CASECADING referes to the ways css applies one style on top of another   style sheets  control the look and feel of  web documents   css html work hand in hand  Html   sorts out this page structure 

validating Forms

Image
As you already  learn that  that you can validation an html , from using the on submit submit attribute of the form element Required field  Phone number User name and password Time  Date  Creadit card Zip code  Let's Disscourse each of the  field validation of defalut 

Formating with html Physical style elements

HTML iser physical style elements  to change the  apperence text  , If you want to text  appear paticular style  such as build bold italic , You must physica style  elements foe example     The B Element - Display the text in bold  The element -Display the text in the italic  The small element -The display the in small font size The SUP element -Display  the text as superscript   Displaying Plain Text  <!Doctype html> <html> <head> <body> Here the display the plain text in html document  </body> </html>  Display the bold text  <!Doctype> <html> <head> <body> <b> Here display the bold text </p> </body> </html>  Display the italic text  <!Doctype html> <head> <title> here text italic </title> </head> <body...

How to create pre code

Use for pre tag code Same design show on the web page As like show below code. <Html> <Head> <Title>This is the pre code demo<\Title> <\Head> <Body> <Pre> ◆◆◆ ◆◆◆ ◆◆◆ ◆◆◆ ◆◆◆.       ◆◆ ◆◆◆◆◆◆◆ ◆◆◆.         ◆◆◆◆◆◆◆◆ ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ ◆◆◆◆◆◆◆◆◆◆ ◆◆◆◆◆◆◆◆◆ ◆◆◆ &#128581;&#128581; &#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882;&#127882; ◆◆...

Create new project in MVC

Image
App_data App_start Content Script Global.asax  Web.config   To create the new controler in an ASP.NET (MVC) Open the exiting  MVC web application  Right click the controller folder in the solution  explore window on the right side the screen  Select Add ←controller , The folder dialog box is displayed   Replace the name given in the controller name  text box with  my home controller  Ensure that the Empty MVC CONTROLLER OPTION IS SELECTED UNDER THE TEMPLATE DROP DOWN LIST  Click the add button The controller is create  and the my home controller  Select  file save all to save the application Select File  Exit to exit microsoft visual stdio  <%@ Application Language="C#" %> <%@ Import Namespace="System.ComponentModel.DataAnnotations" %> <%@ Import Namespace="System.Web.Routing" %> <%@ Import Namespace="System.Web.DynamicData" %> <scr...