Earlier I started building it in Second Life! I thought it would be a more "constructive" way to make it!
Here are a few steps that I have come up with:
1) Create 2 stacked 10x10x10 hollowed out prims //This will be the background of your website
2) :: optional, this serves as columns to help you measure space between content boxes on your website:: make a "grid": 10 10m wide prims side by side 10m high (i made mine neon green so that I could tell the difference between my background and grid easier): link the "grid" and put a this script in it so you can move it out of the way when you don't need it
Slide script:
integer SWITCH;
default
{
state_entry()
{
SWITCH = 1;
}
touch_start(integer tn)
{
if(SWITCH == 0 )
{
llSetPos(llGetLocalPos() -<0,.3,0> );
SWITCH = 1;
}
else if(SWITCH == 1 )
{
llSetPos(llGetLocalPos() +<0,.3,0> );
SWITCH = 0;
}
}
}
3) Start building your website...literally...go ahead use prims to create your design! Get creative!
4) Once you're done try to take screenshots of it straight on...or use angles after all it is YOUR website and maybe you're sick of "flat" looking websites!
You will probabally end up making textures for your website in some paint program anyway but I just thought putting them on prims would be more fun, enjoy!
~DragonChiq Thereian (am I primworthy yet?)

"