Forms Elements and References

Here are all HTML4 form elements: <input type=”text” /> <input type=”password” /> <input type=”checkbox” /> <input type=”radio” /> <textarea rows=”10″ cols=”10″></textarea> <select> <option value=”first”>1</option> <option value=”second”>2</option> <option value=”third”>3</option> </select> <input type=”file” /> <input type=”image” /> … Read more

CSS Margin Shorthands

The margin shorthands can have one to four shorthand styles: margin:top_right_bottom_left; example: margin:10px; margin:top right bottom left; example: margin: 10px 11px 12px 13px margin:top, left_right, bottom 50px 75px; example: margin: 10px 13px 15px margin:top_bottom, left_right … Read more

Insert css into html pages

It can be linked: <link rel=”stylesheet” type=”text/css” href=”css/ycsoftware.css” /> It can be embedded <style> … </style> It can be imported <style type=”text/css” media=”all”> <!– @import url(“css/ycsoftware.css”); –> </style> You can also import css from within … Read more