I have a design of the section shown below,
https://i.sstatic.net/jJB3a.jpg
I am looking to replicate this design using bootstrap/CSS. Here is what I have attempted so far
.content-test-section {
padding: 10px;
}
h3.section-head-number {
color: #5fa936;
}
.vertical-line {
border-left: 5px solid black;
height: 150px;
margin: 10px;
padding: 10px 20px;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<div class="row content-test-section">
<div class="col-lg-6 block-div">
<h3 class="section-head-number">01</h3>
<div class="vertical-line">
<h4>Create Account</h4>
<p>Dummy Data Dummy Data Dummy Data Dummy Data Dummy Data Dummy Data Dummy Data Dummy Data</p>
</div>
</div>
<div class="col-lg-6 block-div">
<h3 class="section-head-number">02</h3>
<div class="vertical-line">
<h4>Create Account</h4>
<p>Dummy Data Dummy Data Dummy Data Dummy Data Dummy Data Dummy Data Dummy Data Dummy Data</p>
</div>
</div>
</div>
This task is taking up quite a bit of my time and I need to complete it urgently. I would greatly appreciate any assistance that can be provided.