Get a template online with sidebars.i need the code for a sidebar using HTML ONLY from bottom left to top left.
Still CSS, just not linking it to your stylesheet.Well use DIV without CSS - e.g. <div style="width:200px; height:500px; border-style:solid; padding:10px 10px 10px 10px; ">Hello</div>
just put that somewhere in your HTML document and
Well I suppose so but you do not need to create a CSS document.Still CSS, just not linking it to your stylesheet.
True, if your going to do that you might aswell add this underneath your head.Well I suppose so but you do not need to create a CSS document.
<div style="display: inline-block; background-color: red;font-family:Verdana;font-size:12px;border: 2px solid #CCC;box-shadow: 2px 2px 5px #BBB;text-shadow: 0px 1px 1px #666;"> <div style="padding:4px 5px;border:1px solid #FFF;"> <div style="padding:2px 4px 2px 25px;color: #FFF;border-radius: 4px; background-color:green; background-repeat: no-repeat; background-position: left top;"><span style="display: block;font-size: 9px;">
Text here.
</span></div></div> </div>
Well yes that would be simple but I am assuming that he does not actually know how to do CSS, hence the reason he only wants HTML.True, if your going to do that you might aswell add this underneath your head.
<style type="text/css">
CSS STUFF HERE... ;O
</style>
That is pretty much what I just told him -.-I found something like this on my PC, hopes it helps you out:
Code:<div style="display: inline-block; background-color: red;font-family:Verdana;font-size:12px;border: 2px solid #CCC;box-shadow: 2px 2px 5px #BBB;text-shadow: 0px 1px 1px #666;"> <div style="padding:4px 5px;border:1px solid #FFF;"> <div style="padding:2px 4px 2px 25px;color: #FFF;border-radius: 4px; background-color:green; background-repeat: no-repeat; background-position: left top;"><span style="display: block;font-size: 9px;"> Text here. </span></div></div> </div>
It can only be done using CSS. CSS is used to give HTML elements a "configurable" style.i dont wanna use CSS :L