I am using a platform on which I can create my own sites, but not only can I write HTML, I have nowhere to put CSS or JS files.
I would like to know if there is a plugin or any tool that I can use so that instead of having the links to the css files and the js files, they are "embedded" directly in the html.
Ex:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Soy un titulo</h1>
<p>soy un parrafo</p>
</body>
</html>
Be this:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<style>
body, html{
background: pink;
}
</style>
</head>
<body>
<h1>Soy un titulo</h1>
<p>soy un parrafo</p>
</body>
</html>
This, assuming that only the rule
is found in the style.css filebody, html{
background: pink;
}
In the case of the images if they can be had on the server, the only thing I have problems with is the CSS and JS.