SSD or SSD Cached
Yes, it is possible.
Method 1
You could create a css file (example.css) and you can include it in your HTML file between
, with:
Code:
<link rel="stylesheet" type="text/css" href="example.css">
(If the css file is not located in the same folder as your HTML file, you must write the entire path on ...href="PATH OR ENTIRE URL TO/example.xss"... in above code.
Method 2
You can add your css code directly in your HTML file
HTML:
<style>
WRITE HERE YOUR CSS STYLE CODE
</style>
(Recommend: place it between
)
Method 3
On each element from your HTML, you can add a css style. For example, let's say that you have a div:
You can style it with css:
HTML:
<div style=" ADD HERE THE STYLE - I.E: color: blue; font-weight: bold; ETC ">My text...</div>
The same as above applies to all: <span>, <p> etc.