1. Attached style sheet
1 2 3 | <head> <link rel="stylesheet" type="text/css" href="style.css"> </head> |
2. Internal
1 2 3 4 5 | <head> <style> body {color:red;font:arial} </style> </head> |
3. Inline
1 | <p style="color:red;font:arial">Content</p> |
1. Attached style sheet
1 2 3 | <head> <link rel="stylesheet" type="text/css" href="style.css"> </head> |
2. Internal
1 2 3 4 5 | <head> <style> body {color:red;font:arial} </style> </head> |
3. Inline
1 | <p style="color:red;font:arial">Content</p> |