Style is overwritable
<html> <head> <title>Practice</title> <style> body { font-size: 2em; } p { color: blue; } p { color: red; } p { color: green; } p { color: magenta; } </style> <body> <p>This is magenta colored text</p> </body> </html>