When creating HTML in the Google Mirror API, is it permissible to incorporate CSS styles like this:
<h1 style="color:#ffaa00;font-family:times;">
Is it acceptable to utilize custom colors and webfonts? It seems to work in the playground but I am uncertain if it will function on Google Glass.
Do I have to stick with the predefined "base-style.css" that is allowed?
Copy the code below.
Visit the playground!
Make sure to use "Chrome Browser" and switch input from "JSON to HTML"
to see this example in action.
<article>
<section>
<p class="text-auto-size">This <em class="yellow">paragraph</em>
is styled using base-style-css.<br>
This <strong style="color:#ffaa00;font-family:times;">HTML</strong>
features custom CSS styling.<br>
enabled with <_strong style="color:#ffaa00;">
</p>
</section>
</article>