CSS can be created by using a normal text editor, which is similar to creating HTML code, or by using software tools. This paper will discuss how to use Dreamweaver, a software tool, to create CSS.
In order for your style sheet to properly display your Web page, you must attach the Web document to a style sheet. Attaching the style sheet can be done by adding this HTML tag into the Web page’s source code: <STYLE TYPE=”text/css”>. Close the tag with </STYLE>. Styles should be set right before the <BODY> tag. Between the <STYLE> tags, assign attributes by using the rules established by W3C. Each rule has a selector and a declaration. The selector is the part of the code that links the HTML to the style you want to appear. The declaration is the part that defines the attributes that will appear in the displayed Web page.
Download Cascading Style Sheet in Dreamweaver
In order for your style sheet to properly display your Web page, you must attach the Web document to a style sheet. Attaching the style sheet can be done by adding this HTML tag into the Web page’s source code: <STYLE TYPE=”text/css”>. Close the tag with </STYLE>. Styles should be set right before the <BODY> tag. Between the <STYLE> tags, assign attributes by using the rules established by W3C. Each rule has a selector and a declaration. The selector is the part of the code that links the HTML to the style you want to appear. The declaration is the part that defines the attributes that will appear in the displayed Web page.
Download Cascading Style Sheet in Dreamweaver