I would like to html code part of my tumblr page, but in the context, I can\'t add any css. Is there any way to format text size, font, color, etc. without using css? I look
With HTML alone, without any CSS, you can set
(though just to a few values)
align attribute or (for vertical alignment) valign attributebgcolor and background attributes in body element and in table-related elementsand some other formatting tools (it is somewhat debatable what belongs to text formatting).
Although HTML5 drafts declare many of these as “obsolete” and “nonconforming”, they also require or strongly recommend (depending on element) that browsers continue supporting them, with the exception of nobr (which is well supported by browsers, with no signs of getting dropped).
(HTML5 is a draft specification. It does not “support” anything; browsers do. Specifications may require support, but that’s just a normative statement, about how things should be.)
If you can in fact use CSS at least in style attributes, then there are many more possibilities, though styling is then clumsy and limited.