html-css

Session on HTML and CSS, markup languages used for creating websites.

View the Project on GitHub dhsouthbend/html-css

«<Back Next»>

Challenge: Styling your Institute Website with CSS

Using the CSS basics we’ve just reviewed, and the list of properties found on the properties page and online, give your website some styling.

I encourage you to use an external stylesheet with classes and IDs to style particular aspects of your site more specifically, but feel free to also play around with inline and internal styling if desired.

Challenge

Reminder: After creating a stylesheet, you must link it to all HTML documents that you want this styling to apply to. You can do so with the <link> tag:

<link rel="stylesheet" type="text/css" href="style.css">

This will tell your HTML document to apply the style rules from the text file named style.css in the same folder.

«<Back Next»>