<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8>
<title>Unique Title</title>
<link rel="stylesheet" href="custom-reboot.min.css">
<link rel="stylesheet" href="custom-style.min.css">
<link rel="stylesheet" href="custom-grid.min.css">
<link rel="stylesheet" href="new-style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col col-md-3"></div>
<div class="col">
<div class="row">
<div class="left col-md-5"></div>
<div class="right col-md-6">
<form>
<div class="form-group">
<label for="FullName">Full Name</label>
<input type="text" class="form-control" id="FullName">
</div>
<div class="form-group">
<label for="PhoneNumber">Phone Number</label>
<input type="text" class="form-control" id="PhoneNumber">
</div>
<div class="form-group">
<label for="Address">Address</label>
<input type="text" class="form-control" id="Address">
</div>
<button type="submit" class="btn btn-primary">Primary</button>
</form>
</div>
</div>
</div>
<div class="col col-md-3"></div>
</div>
</div>
</body>
</html>
Tried different approaches as mentioned in the guide, unfortunately, none of them seem to work. Attempted various strategies specified in the documentation, but they all failed.