InterviewSolution
Saved Bookmarks
| 1. |
Write the general format of linking CSS with HTML? |
|
Answer» The <link> tag is used to add CSS file with HTML in head section. While using <link> tag, the following attributes are also included along with standard values. rel = “stylesheet” type = “text/css” The href attribute is used to link the .css file. General format of <Link> tag: <Link rel = “stylesheet” type = “text/css” href = CSS_ File_Name_with_Extension> |
|