himangshukalita.hashnode.devExternal CSSWhen you need to make changes to several pages, you often use the external style sheet. It is perfect in this situation because it enables you to alter just one file to alter the appearance of the complete website. It uses the <link> tag on every p...Feb 19, 2023·1 min read
himangshukalita.hashnode.devInternal CSSThe internal CSS is used to add a unique style to a single document. It is defined in the <head> section of the HTML page inside the <style> tag. Advantages of Internal CSS: IDs and classes can be used in internal style sheets. You do not need t...Feb 19, 2023·1 min read
himangshukalita.hashnode.devInline CSSBy using the inline CSS approach, CSS can be applied to a single element. Another way to include style sheets in an HTML document is through inline CSS. This strategy reduces some of the benefits of style sheets, so it is suggested that you use the...Feb 19, 2023·1 min read
himangshukalita.hashnode.devDifferent ways to bring CSS into the HTML fileWe can add CSS to our projects in the following ways: Inline styling Internal styling External styling Inline styling Inline styling is a technique in HTML that allows you to apply style directly to an HTML element using the style attribute. It ...Feb 19, 2023·2 min read
himangshukalita.hashnode.devIntroduction to CSSWebsites are one of the most important aspects of your brand's online presence. We must design it right. The website should be designed keeping in mind the users and should ensure that it provides a good user experience. CSS helps web developers to s...Feb 15, 2023·1 min read