What will happen in the following case ?
h1 {color: red text-decoration: underline; font-style: italic;}
निम्नलिखित मामले में क्या होगा?
hear the ; missing after the first property so only italic property will work. to apply all given property code must be like this:
h1 {color: red; text-decoration: underline; font-style: italic;}