Let's keep it short and sweet. Here's what I'm attempting to achieve:
https://i.sstatic.net/e2ZU2.png
Currently, this is what I have:
https://i.sstatic.net/cagv7.png
Below is the code snippet:
#ligne_horizontale_experience {
margin-left: 50px;
width:170px;
height:400px;
border: solid 1px #707070;
border-color: transparent transparent transparent #707070;
}
#ligne_verticale_experience_1 {
margin-left: 50px;
width:45px;
height: 0px;
border: solid 1px #707070;
border-color: transparent transparent #707070 transparent;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name ="author" content="me">
<link rel="shortcut icon" href="favicon.ico" type="">
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="0f6d60607b7c7b7d7e7f4f3a213f213f226d6a7b6e3e">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="code.css">
<title>me</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-2">
<p class="h6">Professionnel</p>
<div id="ligne_horizontale_experience"></div>
<div id="ligne_verticale_experience_1"></div>
</div>
</div>
</div>
</body>
</html>
I've been struggling with this for a few hours now...
Best regards,