Hey guys, so I've been trying to recreate this page with Bootstrap and it's all going smoothly except for this one part. Here is the link I'm referring to: https://i.sstatic.net/0mXMm.png
I have 2 questions:
- Which HTML element should I use for these lines?
- Any idea on how I can divide the 12-column layout into 8 equal parts?
Below is a snippet of the code I've been working on:
<div class="container" style="margin-top: 3%;">
<div class="row">
<div class="col-xs-6 col-xs-offset-3">
<div class="row">
<div class="col-xs-6">
<div class="form-group">
<input type="text" class='form-control' placeholder="First Name">
</div>
</div>
<div class="col-xs-6">
<div class="form-group">
<input type="text" class='form-control' placeholder="Last Name">
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="form-group">
<input type="text" class='form-control' placeholder="Display name">
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="form-group">
<input type="text" class='form-control' placeholder="Email Address">
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<div class="form-group">
<input type="password" class='form-control' placeholder="Password">
</div>
</div>
<div class="col-xs-6">
<div class="form-group">
<input type="password" class='form-control' placeholder="Confirm Password">
</div>
</div>
</div>
<div class="row">
<div class="col-xs-3">
<button class="btn btn-secondary">I Agree</button>
</div>
<div class="col-xs-9">
<p>
By clicking <span class="label label-primary">Register</span>, you agree to the <a href=#>Terms and Conditions</a> set out by this site, including our Cookie Use.
</p>
</div>
</div>
<div class="row">
</div>
<div class="row" style="">
<div class="col-xs-6">
<button class="btn btn-primary btn-block" style="font-weight: bold;">Register</button>
</div>
<div class="col-xs-6">
<button class="btn btn-success btn-block" style="font-weight: bold; ">Sign In</button>
</div>
</div>
</div>
</div>
</div>