All modern browsers support the most common media attributes, which are supplied within the link element to target specific style sheets in a specific situation. For example, to ensure only visitors viewing the web site on a monitor, you add media = “screen” to the link element to call your default style sheet. Underneath that a second link element can be used with media = “print” added to call a print style sheet with only basic styling, such as black text on a plain white background, and all graphics removed.
read more…
If you are using my online ASP.NET Workshop to learn the basics of creating web applications using ASP.NET, one of the lessons that often gets overlooked by the novice (including me) is how does the ASP.NET architecture work behind the scenes. Although learning this may seem a bit too technical or unnecessary since all you want to do is create some dynamic web pages, it is worth taking a brief look at least at these informative videos.
read more…
I know the basics of CSS (Cascading Style Sheets), but beyond that I sometimes need to bumble and fumble around looking for answers in books or online. One aspect of CSS that gives me some occasional problems (and I’m sure others as well) are floats.
When you float an element, it becomes a block-level element that can then be shifted to the left or right on the current line. A floated box is laid out according to the normal flow of elements, but it’s then taken out of the flow and shifted to the left or right as far as the containing element will allow. Floats are a must for placing images in context, creating columns and other neat design ideas.
read more…
Learning Flash by watching videos is a very efficient way to learn specific techniques without going through books or online tutorials. As I mentioned in a previous post about online learning, there are many website that offer video tutorials on different web technologies including Flash.
LearnFlash.com is one of them and they offer one of the largest selections of Flash video tutorials.
read more…
If you want to build modern web sites, you need to know about Cascading Style Sheets (CSS). CSS gives you the power to style and lay out web sites so they are usable, compact, good looking, well structured, and easy to maintain.
The basic purpose of CSS is to allow the designer to define style declarations, and to apply those styles to selected portions of HTML pages using selectors which are references to an element or grop of elements to which the style is applied.
read more…
Once you learn the basics of PHP, you will want to know how to interact with a database and update its data from a web page. MySQL is the most obvious and recommended choice using PHP and is fairly easy to setup.
You can use phpMyAdmin to easiy setup your MySQL database, tables and perform any necessary SQL statements.
read more…
Only recently have I started to learn PHP and am starting to realize what all the fuss is about. PHP has been around for 10 years and has gained steady increasing popularity.
read more…