Recent content by markeden

  1. M

    What is the use of meta tag in HTML ?

    Meta tag is considered less important nowadays due to the fact that Google stopped its support to meta keywords.
  2. M

    How to show a image in html page?

    Also you can show images using css background property... .. <div class="bgimage"> .. .. </div> .. <style> .bgimage { width: 100%; height:200px; background: url('IMAGE-URL-HERE') #000 no-repeat; } </style>
Back
Top