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>
solved How do you put