How can i achieve this style in Html/Css?

You can add border on each element like this:

<div style="border-bottom: 1px solid #ddd;">Journal Type:</div>

Or create class in <head>:

<head>
    <style>
      .border{
          border-bottom: 1px solid #ddd;
      }
    </style>
</head>

and add it to your element:

<div class="border">Journal Type:</div>

Browse More Popular Posts

Leave a Comment