• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

HTML question

Rab

Member
Joined
Feb 23, 2009
Messages
468
Reaction score
9
Location
ARGENTINA!
Is there anyone active with a intermediate+ html knowledge? I need help, i can pay. Basically, what i need help with is that i've made all my images but idk how to "program" them, i mean, how to make the web structure, the building, and like, if you click there, it redirects you there and such. Add me on msn: [email protected]
Thanks
 
PHP:
<img src="imagesPlace/image.gif" width="385" height="400" style="border: 0px;" />

but there is also stuffs that you can use in css if you use modern acc (best)

PHP:
		<div  id="pic">
    <h4> Name on it (if you wanna ex.. text)</h4>

now css:

Code:
#pic {
	clear: both;
	position:absolute;
	margin: -43px 0 0 76px; padding: 0 40px 0 0;
	background: url(pic.png) repeat-x;
	font: bold 12px/26px Verdana, Arial, Tahoma, Sans-serif;
	height:36px;
	width:840px;
	border-top: #666 solid 6px;
}

in the tpl file
 
Last edited:
Back
Top