As the title said I am a newbie who's trying to merge an Html with a Css because the website I am using (getresponse) won't let me upload a different .css file. Surely I am doing something wrong, but here is the html:
#cont {
display: none;
}
.show:focus+.hide+#cont {
display: block;
}
<div>
<a href="#show" class="show">[Show]</a>
<a href="#hide" class="hide"></a>
<div id="cont">Content</div>
</div>
How do I do it? I tried writing the .css first but nope.