Web Design

Pique

New Member
Hello!

I have just begun to study IT now and we have had to create our own student website. I was just wondering what you think about it in terms of design and how it is general. Have never worked with html or css before it is completely new to me, but begin to recover. Everything on the page is in Norwegian as you, but it is not the content that is important. Had been very nice with some tips for improvements etc..

http://www.it-stud.hiof.no/~aren/studentweb/index.html

Thanks! :)
 

Phreaddee

Super Moderator
Staff member
Webkit handles html5 no dramas.
A bit of js will get ie on board.
No need for separate css.
Build properly, not hacks.
Conditionals suck. The only conditional you should use is to target ie6. To get them to upgrade.
The rest will play fine, if u code properly.
 

PixelPusher

Super Moderator
Staff member
Webkit handles html5 no dramas.
A bit of js will get ie on board.
No need for separate css.
Build properly, not hacks.
Conditionals suck. The only conditional you should use is to target ie6. To get them to upgrade.
The rest will play fine, if u code properly.

Well said.

To add to this, look at htmlshiv. Best solution I have found for getting IE to follow suit with HTML5.
 
Top