hi, I need help with html code, i have two images in css (firstimage.jpg and secondimages.jpg, but i'm trying to figure out how to write code to show firstimages.jpg then show secondimages.jpg on the top of firstimages.jpg, for sample that secondimages.jpg overlop on firstimages.jpg, how can i write that in html code!

Here is sample of css, but can't figure out in html.

#first {
padding-left: 35px;
width:200px;
height:35px;
width:200px;
border:solid 0 #fff;
background-color: transparent;
background-image: url(image/firstimages.jpg);
background-repeat: no-repeat;
line-height: 42px;

}
#second {
background-image: url(image/secondimages.jpg);
background-repeat: no-repeat;
padding-left:35;
z-index: 200;
}

thanks.