HTML CSS examples for CSS Widget:Image
Attaching image to first letter
<html lang="en"> <head> <style> #id {<!-- w w w.ja v a 2 s .c om--> position:relative; } .maintitle { font-size:100pt; } .maintitle:before { content:url('http://www.java2s.com/style/demo/Google-Chrome.png'); position:absolute; top:171px; } </style> </head> <body translate="no"> <div id="container"> <h1 class="maintitle">LINKBOUND</h1> </div> </body> </html>