Skip to main content

Posts

Showing posts with the label web development

HTML Form - khabork

HTML  Form  is one of the most important element in any kind of data collect. For any kind of opening an account the user data must be need ,the authority collects the user data for the identification of the user.This user data collect by online form, this form can be the Sign Up , Admission Form ,Log In Form, Subscription Form,search form any kind of information input which field by the user. In HTML for  create a form we use the <form> </form>   Tag and for the final submit we can use the <submit> Tag or <button>  Tag. Here we make a sign up form for an example. 1) Sign Up  HTML  Form html : < form class ="modal-content" action ="/action_page.php"> <div class ="container">  <h1>Sign Up</h1>  <p>Please fill in this form to create an account.</p>  < label  id="text1"><b>Email</b></ label >  < input type ="text" placeholder =

Text Inputs in HTML -Khabork

There are so many input type attributes in the HTML,among them the "text" type attribute is used so much.Any kind of user data inputs the the text type inputs are used. The Sign Up, Log In form also the other inputs like any kind of user data inputs the text type attributes are used. So the normal input type attributes looks not attractive, for this the we make our own style in the text attribute.   Now we apply the css in the text input. Examples:-  1) Normal Input  html: <! DOCTYPE html> <html> <head> <title> example </title> </head> <body> < input type ="text" placeholder ="type here.."> </body> </html> Out Put : 2) Input type proper CSS In this type input we add the proper css for making the input type attribute looking good. In this type input we give the background color and the border in the outline.We also give the border radius in the corners. htm

Buttons in HTML - Khabork

Button is the one of the impotent element in the HTML.We can do many several work by clicking the button.Button is basically a input type element in the HTML. By the button Tag we can submit our Sign Up or Login form or any kind of form Submition we use the button tag.We also do any kid of work like when we post our photos , videos or other documents then we use the button for the final submission. Button without CSS : < button >Click Me< /button > out put:  Without CSS the button looks a normal ,It not looking good, it have no background color, no text color, no border. So we have to customize the button in our own way, So we have to add CSS to the button property.so we are adding some CSS property to the button for more attractive. Button With CSS   : html:     < button >Click Me</ button > CSS: button { width:  150px; height: 50px; color:   white; border-radius: 5px; font-size: x-large; font-family:   Arial

Apply CSS in HTML page -Khabork

What is CSS ? CSS is the style sheet type documents, CSS stands for Cascading Style Sheet. By CSS we can style our html page , CSS describe how our html page are displayed in the screen or other media.By css we can do many work ,it controls the Layouts of multiple web pages. How Write CSS ? CSS  is so simple to write. Mainly it targets the the HTML elements by using the Html Class and Html Id. At first it targets the HTML elements then it writes the according its Styles. CSS we can write two ways, those are i) In HTML Page  In this type Html we write the CSS code within  the HTML code by using the  <style>  <style> Tag below   the <head> </head>  Tag in Html Page . If the html pages are so small or Don't have many CSS code then we write this type of in build CSS  code. This types of CSS codes are do simple apply  CSS  in HTML  page .  Example :  < style >   #example  { color : red   ; font-size :  50px ; }  <

Tags in HTML - Khabork

HTML means Hyper Text Markup Language ,this language is not a proper Programming Language, it is a Markup language . The HTML language write using by the Tags .All the language write in the Tags, the Tags are closed by the  Less than (<) and Greater Than (>) symbol . The full Tag looks like that  < tag > main content </ tag > . An example of the tag is   < h1 >    Hello World !!  < / h1 > Here  < h1 > is the opening Tag and  </ h1 >  is the closing tag in this attributes. Here h1 is the Heading Tag of any web page. Here the Out Put of the tag will be .....   < h1 >    Hello World !!  < / h1 > Out Put :  Hello World !! Here we discus about basic  HTML  Tags .. 1) <a>   </a> < a >  Tag is defined as the hyper link, this Tag used for the Link to one page to another page.Its general color is blue and underline. Cursor will always pointer when cursor move on it .it is defined as   <