Powered by Blogger.

Wednesday, 28 December 2016

How to create a form using html


HTML forms are the main important point of interaction/communication between end user and website or application.HTML forms are used to send data to the website HTML forms accept data from user and sent to website or database. Lets start: The <form> element: All...

Monday, 26 December 2016

How to make list using HTML


Lists are used to group some related information together you can use ordered list or unrecorded lists as your requirement. lets start to learn how we make list using HTML. For unrecorded list: <ul>  <li>List Item One </li>  <li>List Item...

Sunday, 25 December 2016

Creating Links to Other Pages using HTML


Today you will learn how to link other pages using HTML tag. It is very simple once you will learn links you can make many links as you want. Let's start  HTML provide us anchor tag to link one page, image ,any word or a single alphabet to another pages. Example: The code bellow create a link to the W3 Learning House home page. <a href="w3learninghouse.blogspot.com">W3 Learning House</a> ...

Friday, 16 December 2016

How to insert image to HTML webpage


Step #1. Add image tag in to your web page <img> In your web page you will add html image tag like this <img src = "path to image " alt="alternate image name "> . Note that the extension .jpg , .png , .svg with your image name. Click the image bellow to see...

Thursday, 15 December 2016

How to make a website using html code


Step #1. Open Notepad or Sublime Text Notepad is free and automatically installed in your computer just go to start menu and open notepad or if you are using sublime text (is also text editor like notepad with advanced features) open your sublime text.  Click the...