Learn how to create forms in HTML (Web forms). Forms are created using the form tag. The form tag has several attributes which include; method, id, name, action, enctype, etc. Form controls / elements include; text, password, textarea, button, radio button, submit button, checkbox, reset button,...Read More
Posts In "HTML / CSS" Category
-
-
Descendant Selectors In CSS
Friday, 9th March 2012Learn about the descendant selectors in CSS. Learn how to use them when styling web...Read More -
CSS Type Selectors
Saturday, 25th February 2012Learn about the CSS type selector. Get to when, where and how to use it. Type selectors match the various element type as specified in the pattern. The type selector matches every instance of the element type in the document...Read More -
CSS Universal Selector
Saturday, 25th February 2012Learn about the CSS universal selector ( * ) - asterisk. Get to know how, where and when you should use this selector. The universal selector matches the name of any element type. If the universal selector is not the only component of a simple selector, the ( * ) may be...Read More -
CSS Text Shadow
Tuesday, 21st February 2012Learn how to add a drop shadow on text in a web page using a CSS property called text-shadow. The text-shadow property takes in 4 arguments i.e. color of the shadow, horizontal offset, vertical offset and the...Read More -
CSS Class Selectors
Monday, 20th February 2012Learn how to use the CSS class selectors to style your HTML documents (web pages). Get to know the pattern of the class selector. The class selector primarily matches elements through the value of their class...Read More -
CSS ID Selectors
Wednesday, 15th February 2012Learn how to use CSS ID Selectors, HTML elements can have one of their attribute as ID. The ID attribute uniquely identifies its element where it is used, this means no two or more elements in the same HTML document (web page) can have the same ID. CSS takes advantage of the ID attribute to match...Read More -
Selectors In CSS
Saturday, 11th February 2012Learn about the various selectors in CSS, their patterns and how they affect the HTML document where they are applied. selectors are patterns used to select the element(s) you want to style. Get to know some of the limitations of using CSS inline style. Some of the selectors in CSS include;...Read More -
Setting A Background Using CSS
Wednesday, 1st February 2012Learn how to set a background of an HTML element using CSS. Using the background property in CSS you can set either a color background or and image background. CSS offers a lot of flexibility when it comes to image backgrounds as compared to the traditional background attribute in...Read More -
Adding Scrolling Content To A Web Page
Monday, 30th January 2012Learn how to make scrolling web page content using the HTML marquee tag. The marquee tag has various tags that are responsible for how the content will scroll and these include behavior, direction, loop, Scrollamount,...Read More
