0

In this post we will teach you. (How to Create a Dashboard in Html and CSS) .Copy the code below. Then check out our blog through the online HTML editor. Then use the code in your website. If there is a problem with the code, ask your question in the comment box below.

<!--DOCTYPE html--> <html lang="en"> <head> <title> Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> <style> .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #100100; background-color: #FBFFC9; } /* Remove the navbar's default margin-bottom and rounded borders */ .navbar { margin-bottom: 0; border-radius: 0; } /* Add a gray background color and some padding to the footer */ footer { background-color: #FBFFC9; padding: 25px; } </style> </head> <body> <nav class="navbar navbar-inverse"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">Your text..</a> </div> <div class="collapse navbar-collapse" id="myNavbar"> <ul class="nav navbar-nav"> <li class="active"><a href="#">Home</a></li> <li><a href="#">Your text..</a></li> <li><a href="#">Your text..</a></li> <li><a href="#">Your text..</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li> </ul> </div> </div> </nav> <div class="jumbotron"> <div class="container text-center"> <h1>Your text..</h1> <p>Your text..</p> </div> </div> <div class="container-fluid bg-3 text-center"> <h3>Your text..</h3><br> <div class="row"> <div class="col-sm-3"> <p>Your text..</p> <img alt="Image" class="img-responsive" src="https://placehold.it/150x80?text=IMAGE" style="width:100%"> </div> <div class="col-sm-3"> <p>Your text..</p> <img alt="Image" class="img-responsive" src="https://placehold.it/150x80?text=IMAGE" style="width:100%"> </div> <div class="col-sm-3"> <p>Your text..</p> <img alt="Image" class="img-responsive" src="https://placehold.it/150x80?text=IMAGE" style="width:100%"> </div> <div class="col-sm-3"> <p>Your text..</p> <img alt="Image" class="img-responsive" src="https://placehold.it/150x80?text=IMAGE" style="width:100%"> </div> </div> </div><br> <div class="container-fluid bg-3 text-center"> <div class="row"> <div class="col-sm-3"> <p>Your Text</p> <img alt="Image" class="img-responsive" src="https://placehold.it/150x80?text=IMAGE" style="width:100%"> </div> <div class="col-sm-3"> <p>Your Text</p> <img alt="Image" class="img-responsive" src="https://placehold.it/150x80?text=IMAGE" style="width:100%"> </div> <div class="col-sm-3"> <p>Your Text</p> <img alt="Image" class="img-responsive" src="https://placehold.it/150x80?text=IMAGE" style="width:100%"> </div> <div class="col-sm-3"> <p>Your Text</p> <img alt="Image" class="img-responsive" src="https://placehold.it/150x80?text=IMAGE" style="width:100%"> </div> </div> </div><br><br> <footer class="container-fluid text-center"> <p>Footer Text</p> </footer> </body> </html>

Post a Comment

 
Top