I'm trying to create a webpage with slanted lines. Is it possible to set an angle of 20 degrees using three div elements?
Currently, I have one div for the logo at the center and another for the navigation bar. I want the navigation bar to align with the slanted line above it. I am working with Bootstrap 3 and feeling a bit confused. Any help and guidance would be greatly appreciated.
<div class="container" style="background-color: #04342E; width:100%">
<img class="img-responsive center-block" style="height: 600px; align-items: center;"; src="/i/gp-logo.png" />
<nav class="navbar navbar-default" style="justify-content: space-between; background-color: transparent; background: transparent; border-color: transparent;">
<ul class="nav navbar-nav" style="text-decoration: none">
<li class="nav-item">
<a class="nav-link active" href="#" style="color: white;">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" style="color: white;">Artwork</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" style="color: white;">Stationery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" style="color: white;">Books</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" style="color: white;">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" style="color: white;">Contact</a>
</li>
</ul>
</nav>
<div>
</div>
</div>