How can I use a .css file?

  • Thread starter Thread starter ad
  • Start date Start date
A

ad

I use Visual Studio.net to develop a web application.
I got a .css file. How can I use this .css file in my application?
 
I got a .css file. How can I use this .css file in my application?

You link to it on each page:

<head>
<link href="/assets/styles.css" type="text/css" rel="stylesheet">
</head>

-Darrel
 
Hello ad,

You can also just drag the .css file to the code window. This will insert
the correct markup for you.
 
Back
Top