Hi AzizK. Welcome to the forums. 
As Stevie said, you can just type | (the "pipe" character) if you want to (as you did in your post). However, there are reasons not to do that (for example, as a divider between footer links). One reason I don't like the pipe character to be used in that way is that it is read out to screen reader users.
So it's nicer to use CSS styling to do it instead. So, as an example, if your footer links are contained in List Items (<li>) you could, for example, give each <li> right padding and right margin, and a right border:
Code:
.footer li {
padding-right: 10px;
margin-right: 10px;
border-right: 1px solid #999;
}
.footer li:last-child {
border: none;
}
Bookmarks