InterviewSolution
Saved Bookmarks
| 1. |
Wrie a CSS file to define text color and alignment to <p> tag? |
|
Answer» The style properties are defined to <p> tag. Hereafter, whenever you use the <p>, the contents will be displayed with modified properties. If you want to use the above style definition as an internal style then it should be specified within <style>,</style> block in head section. If you want store the above definition for using all your web pages, you should save the above code as a separate file with extension.css |
|