How include external CSS file in a form ???
When I create a form and I use the <link> directive in the <head> to refer a CSS file, the form doesn't recognize the file (called in absolute way) and I have to copy each styles inside a <style type="text/css"> directive.
<link href="css/bootstrap.min.css" rel="stylesheet">
This is for example to import a Boostrap file with the CSS.
0