Quote (NinjaSushi2 @ Feb 20 2013 12:26am)
I reread what you said; he is teaching us the basics, etc. Now we are learning about style codes and more on divs, how to do images, etc. I think next week we learn how to input video and audio and get into more advance things.
i understand.. but these are basics based on standards years ago.. there are new standards that are still very basic that should have replaced these old standards. a professional in web development knows this...
what's ashame is that this course is not focusing on establishing a solid foundation on web development. it sounds more like he is just teaching you a quick/dirty way of learning how to understand and and do general web programming. I know you said this is just a side course for your programming degree but as a web programmer this hurts to see how he is teaching you..
php is a whole other animal... but it plays well with html and css.
you should check this site out in between lessons. they will touch on the basic fundamentals on all html and css properties..
http://www.w3schools.com/html/default.aspim not saying your professor is wrong, he is just stuck in past..
and sorry, there was an error im code:
Code
<style>
#master{
width: 1000px;
margin:0 auto;
}
#content
{
margin:140px 0 auto;
padding: 0px;
border: 1px solid #000;
background-color:#fff;
width: 950px;
height: 800px;
}
</style>
<div id="master">
<div id="content">
</div>
</div>
Sorry if this was not the answer you were looking for here on the forums.. but I can assure you, that this is the EASIEST most updated way to do this..
Glad you managed to figure it out though.
This post was edited by Ralphdp on Feb 20 2013 06:15am