Method 1: Using CSSAdd the following CSS rule to your stylesheet:
```css
.table-line {
height: 1px;
margin: 0 auto;
background-color: black;
}
```
Then, insert a `
` element with the class "table-line" between the two columns:
```html
Column 1 |
Column 2 |
```
Method 2: Using HTMLInsert a `
` element between the two columns:
```html
Column 1 |
Column 2 |
```
Method 3: Using BootstrapIf using Bootstrap, you can add a vertical line using the `col-border` class:
```html
Column 1 |
Column 2 |
```