WEB DESIGN AND NEW MEDIA - ASSIGNMENT 2
2 October - 29 October 2017 (Week 5- Week 10) Aurelia Regina Sutjahjokartiko , (0329953) Web Design and New Media Second Assignment : Personal Website / Portofolio Website Lecture 1 2 October 2017 CSS External Style An external style sheet is a separate file where you can declare all the styles that you want to use on your website. You then link to the external style sheet from all your HTML pages. This means you only need to set the styles for each element once. If you want to update the style of your website, you only need to do it in one place. Step by step : 1. Create style sheet Type CSS code into a plain text file, and save with a .css extension (for example, styles.css). Figure 2. Link to the Style Sheet from the HTML Documents Add the following code between the <head></head> tags of all HTML documents that you want to reference the external style sheet. This code uses the HTML <link> element to link to the external style sheet.