How do you put <style> in css? [closed]

You save your CSS into a separate file, like style.css and include in inside your <head> tag:

<head>
    <!-- other stuff such as metas, title, etc. -->
    <link rel="stylesheet" type="text/css" href="https://stackoverflow.com/questions/25455297/style.css">
</head>

Leave a Comment