Answers for "add css in cshtml"

8

adding css to html

<head>
  <!-- Linking external Css document -->
  <link rel="stylesheet" href="styles.css">
  
  <!-- Writing Css inside HTML element -->
  <style>
    ...
  </style>
</head>
Posted by: Guest on October-29-2020
1

use css in cshtml

<link rel="stylesheet" href="app.css" type="text/css" />
Posted by: Guest on April-09-2020

Browse Popular Code Answers by Language