I want to have my nav rotated 90 degrees and stuck into the top left corner of the viewport, like shown in the sketch I made bellow:
Code:
<div style="width:100vh; height:100px; display:flex; align-items:center; justify-content:space-around; background-color:#CCC; position:fixed; top:0px; left:0px; ">
<span style="font-size:20px; color:red;">LINK</span>
<span style="font-size:20px; color:red;">LINK</span>
<span style="font-size:20px; color:red;">LINK</span>
<span style="font-size:20px; color:red;">LINK</span>
<span style="font-size:20px; color:red;">LINK</span>
</div>