Powered by Blogger.

Thursday, 12 January 2017

Using multiple classes within one selector


HTML allows you to add multiple classes to an HTML element. For example you can add two classes in to an <h1> . Two different classes are written within the same attribute with spaces separating each class as above image shows.  The advantage of using...

Wednesday, 11 January 2017

GET and POST method in HTML


HTML forms can use method by specifying method="POST" and method="GET" in <form> elemen. GET method: Appends form data into the URL in name/value pairs formet. URL is limited in range 3000 characters POST method: No size limitations for the URL Data is not...

Wednesday, 4 January 2017

Tuesday, 3 January 2017

Linking a separate css file to HTML


Today you will learn how to link CSS file to HTML  document. Your style/CSS rules/properties are contained in a single file that is saved with the extension .css. You link to it directly from each HTML document/file. This is just simple that you put line in between...

Monday, 2 January 2017

How to set background color in HTML page


There are different ways to set background color in HTML page. First: Add <style></style> tag in your HTML document to set background color and then write the css property inside the <style></style> See image bellow to learn more easily ...