Posts

How to use Height and Width property in HTML using CSS

  => open ur text editer :- => And save it as propert_height_width.html and write below code:- <html> <head> <style type="text/css"> p{ border: 1px solid #a1a1a1; width: 100%; height: 150px; overflow-x: hidden; overflow-y: scroll; } </style> </head> <body> <p> HTML, by default,is not so attractive... ...This paragraph has fixed height of 150px, width wise there are no issues. But, when content in paragraph increases, it "overflows" out of the  tag. In such cases, to maintain width, scroll bars  are used. <br /><br /> HTML, by default,is not so attractive... ...This paragraph has fixed height of 150px, width wise there are no issues. But, when content in paragraph increases, it "overflows" out of the  tag. In such cases, to maintain width, scroll bars  are used. <br /><br /> HTML, by default,is n

How to use cursor property in HTML using CSS

=> open ur text editer :- => And save it as propert_cursor.html and write below code:-   <html> <head> <style type="text/css"> body{ cursor:  w-resize; } </style> </head> <body> <h1>Hello!</h1> <b>let`s have a look at css..</b> <p>HTML by default,is not so attractive.CSS helps in "beautification" of HTMl.  How about learning some CSS magic?CSS stands for Cascading Style Sheet. This file will help you sharpen your CSS skills.</p> </body> </html> =>then run on ur browser. =>if u download source code then click on below link :- Download Source Code

How to use Inline CSS in HTML

  => open ur text editer :- => And save it as CSS_type_inline.html and write below code:- <html> <head> </head> <body> <h1 style="color: #0087c6; font-size: 32px;"> Hello..!! </h1> <h1 style="border: 1px solid purple;"> Hello..!! </h1> <h1 style="text-decoration: underline;"> Hello..!! </h1> </body> </html> =>then run on ur browser. =>if u download source code then click on below link :- Download Source Code

How to create simple website using only html

=> I use this content and image just for learning purpose and you can also download source code given in this post.  => open ur text editer :- => And save it as home.html(this is a our index page) and write below code:- <html> <body> <table width="800" border="0" align="center"> <tr> <td> <h2>Welcome to my family website!</h2> <hr size="1" color="black" /> <a href="home.html"><i>Home</i></a> &bull; <a href="about.html">About</a> &bull; <a href="history.html">History</a> &bull; <a href="member.html">Membere</a> &bull; <a href="gallary.html">Gallary</a> &bull; <a href="contact.html">Contact</a>  <hr size="3" color="black" /> <img src="images/

How to create simple registration form in html

=> open ur text editer :- => And save it as registrationform.html and write below code:- <html> <body> <table border = "0" width = "1000" bgcolor = "skyblue" align = "center" > <tr> <td valign = "top" width = "50%" > <h2> General details </h2> <table width = "100%" > <tr> <td width = "70%" ><b> Company Name </b><br /> <input type = "text" size = "55" ><td> <td><b> Categories </b><br/> <select width = "10" > <option> Automobile </option> <option> Computer </option> <option> Civil </option> <option> Electrical </option> <option> Mechanical </option> </selec