Last active
March 4, 2020 13:34
-
-
Save officialrajdeepsingh/c58edd16eb39d2b2b8fa41354c75ca93 to your computer and use it in GitHub Desktop.
Why Bootstrap is bad?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<!-- cpyright by w3schools.com --> | |
<title>Bootstrap Example By w3schools.com</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.4.1/jquery.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> | |
<link rel="stylesheet" href="./style.css" > | |
</head> | |
<body> | |
<!-- | |
=============================== | |
check out unuse css and Html file Size | |
=============================== | |
--> | |
<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="#">Logo</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="#">Messages</a></li> | |
</ul> | |
<form class="navbar-form navbar-right" role="search"> | |
<div class="form-group input-group"> | |
<input type="text" class="form-control" placeholder="Search.."> | |
<span class="input-group-btn"> | |
<button class="btn btn-default" type="button"> | |
<span class="glyphicon glyphicon-search"></span> | |
</button> | |
</span> | |
</div> | |
</form> | |
<ul class="nav navbar-nav navbar-right"> | |
<li><a href="#"><span class="glyphicon glyphicon-user"></span> My Account</a></li> | |
</ul> | |
</div> | |
</div> | |
</nav> | |
<div class="container-fluid text-center"> | |
<div class="row"> | |
<div class="col-sm-3 well"> | |
<div class="well"> | |
<p><a href="#">Profile</a></p> | |
<img src="https://source.unsplash.com/1600x900/?nature" class="img-circle" height="65" width="65" alt="Avatar"> | |
</div> | |
<div class="well"> | |
<p><a href="#">Interests</a></p> | |
<p> | |
<span class="label label-default">News</span> | |
<span class="label label-primary">Book</span> | |
<span class="label label-success">Labels</span> | |
<span class="label label-info">Football</span> | |
<span class="label label-warning">Gaming</span> | |
<span class="label label-danger">Friends</span> | |
</p> | |
</div> | |
<div class="alert alert-success fade in"> | |
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> | |
<p><strong>Ey!</strong></p> | |
People are looking at your profile. Find out who. | |
</div> | |
<p><a href="#">About</a></p> | |
<p><a href="#">Contact</a></p> | |
</div> | |
<div class="col-sm-7"> | |
<div class="row"> | |
<div class="col-sm-12"> | |
<div class="panel panel-default text-left"> | |
<div class="panel-body"> | |
<p contenteditable="true">Status: Feeling Blue</p> | |
<button type="button" class="btn btn-default btn-sm"> | |
<span class="glyphicon glyphicon-thumbs-up"></span> Like | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-sm-3"> | |
<div class="well"> | |
<p>John</p> | |
<img src="https://source.unsplash.com/1600x900/?water" class="img-circle" height="55" width="55" alt="Avatar"> | |
</div> | |
</div> | |
<div class="col-sm-9"> | |
<div class="well"> | |
<p>Just Forgot that I had to mention something about someone to someone about how I forgot something, but now I forgot it. Ahh, forget it! Or wait. I remember.... no I don't.</p> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-sm-3"> | |
<div class="well"> | |
<p>Bo</p> | |
<img src="https://source.unsplash.com/1600x900/?nature,water" class="img-circle" height="55" width="55" alt="Avatar"> | |
</div> | |
</div> | |
<div class="col-sm-9"> | |
<div class="well"> | |
<p>Just Forgot that I had to mention something about someone to someone about how I forgot something, but now I forgot it. Ahh, forget it! Or wait. I remember.... no I don't.</p> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-sm-3"> | |
<div class="well"> | |
<p>Jane</p> | |
<img src="https://source.unsplash.com/1600x900/?nature,water" class="img-circle" height="55" width="55" alt="Avatar"> | |
</div> | |
</div> | |
<div class="col-sm-9"> | |
<div class="well"> | |
<p>Just Forgot that I had to mention something about someone to someone about how I forgot something, but now I forgot it. Ahh, forget it! Or wait. I remember.... no I don't.</p> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-sm-3"> | |
<div class="well"> | |
<p>Anja</p> | |
<img src="https://source.unsplash.com/1600x900/?girl" class="img-circle" height="55" width="55" alt="Avatar"> | |
</div> | |
</div> | |
<div class="col-sm-9"> | |
<div class="well"> | |
<p>Just Forgot that I had to mention something about someone to someone about how I forgot something, but now I forgot it. Ahh, forget it! Or wait. I remember.... no I don't.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="col-sm-2 well"> | |
<div class="thumbnail"> | |
<p>Upcoming Events:</p> | |
<img src="https://source.unsplash.com/1600x900/?nature,water" alt="Paris" width="400" height="300"> | |
<p><strong>India</strong></p> | |
<p>Fri. 27 November 2015</p> | |
<button class="btn btn-primary">Info</button> | |
</div> | |
<div class="well"> | |
<p>ADS</p> | |
</div> | |
<div class="well"> | |
<p>ADS</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<footer class="container-fluid text-center"> | |
<p>Copy Right By Rajdeep Singh</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment