I want to create a line in my html/css to separate my navbar from the rest of the website, kind of like a border but only visible on the right side of the website.
But unlike a border I would like the line to go along the entire website. So from the top of the website to the bottom, what's the code for that?
Have in mind that I'm very new to both html and css so I am not familiar with canvas etc.
I did try a HTML and CSS from another thread but I couldn't make it work, it looked like this:
<div id="vLine">
<h1>text</h1>
</pre>
#vLine {
height: 100%;
width: 50px;
border-left: 3px solid black;
border-right: 3px solid black;