I am making a website and want the first word in my title/h1 tag to be read horizontally and the second word to be read vertically.
I tried using span tags in my h1 but it would only let my change the color and would not work when I used the rotate feature.
html
<h1>
<span class="horizontal-QuanT">QuanT</span>
<span class="verticle-Tech">Tech</span>
</h1>
css
h1{
color:bisque;
text-align: center;}
h1 span.horizontal-QuanT{
color:gray}
h1 span.verticle-Tech{
color:white;
rotate: 90deg;}