xxxxxxxxxx
<html lang="en">
<head>
<meta charset="utf-8">
<title>Make a Vertical Line in HTML</title>
<style>
.vertical-line{
display: inline-block;
border-left: 1px solid #ccc;
margin: 0 10px;
height: 125px;
}
</style>
</head>
<body>
<img src="/examples/images/club.jpg" alt="Club Card">
<span class="vertical-line"></span>
<img src="/examples/images/spade.jpg" alt="Spade Card">
</body>
</html>