How to insert CSS file into HTML?
Hi guys,
CSS stands for Cascading Style Sheets. CSS helps to control multiple layout of webpage. It is easy to to link css file to html file.
Following are the steps:
1. Just copy the following code.
<link rel="stylesheet" type="text/css" href="name of your css file.css">
2. And paste it between <head> </head> of html.
<head>
<link rel="stylesheet" type="text/css" href="name of your css file.css">
</head>
<head>
<link rel="stylesheet" type="text/css" href="name of your css file.css">
</head>
3. Now you are done.
No comments :
Post a Comment