This blog is about latest technology. you can get more technical knowledge from here. "Technical Research" Blog share many latest information. In Technical Research we are sharing earning tips and technical knowledge. in short technical world is all about technical knowldge and Research.

Links

Thursday, 6 September 2018

How to insert CSS file into HTML?

No comments

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>

3. Now you are done.


No comments :

Post a Comment