30Jul/22

HTML Form Elements

The <input> Element The most important form element is the <input> element. The <input> element can be displayed in several ways, depending on the type attribute. Example <input name=”firstname” type=”text”>   The <select> Element The <select> element defines a drop-down list:Read More…

17Jul/22

CSS Borders

CSS Border Properties The CSS border properties allow you to specify the style, width, and color of an element’s border. p.dotted {border-style: dotted;} p.dashed {border-style: dashed;} p.solid {border-style: solid;} p.double {border-style: double;} p.groove {border-style:Read More…