seo - Are HTML meta tags enough? -
i have webpage download page free application (http://dragonfli.es). because of minimalist design, there's no text in page. wondering if html meta tags sort of seo or have put text in there?
in page have number of elements empty:
<div class="window"> <div class="image_reel" style = "border: 1px #707070 solid; "> <a href="#"><img src="reel_1.png" alt="" /></a> <a href="#"><img src="reel_2.png" alt="" /></a> <a href="#"><img src="reel_3.png" alt="" /></a> <a href="#"><img src="reel_4.png" alt="" /></a> </div> </div> <div class="paging"> <a href="#" rel="1">1</a> <a href="#" rel="2">2</a> <a href="#" rel="3">3</a> <a href="#" rel="4">4</a> </div>
more important having decent page description having content inside of <a>
tags , having alt attributes reasonable descriptions of images.
usually in page this, have following:
html:
<div id="frontimage"> here descriptive text goes on contents of page, , pertains image background i'll using. </div>
css:
#frontimage { position: relative; display: block; width: 400px; /* width of bg image */ height: 400px; /* height of bg image */ background-image: url(/img/someimage.png); background-repeat: no-repeat; text-indent: -999em; /* move descriptive text off screen */ }
this allow have text on page , turn text image people see. make sure text you're using applicable content associate it.
Comments
Post a Comment