Created
September 22, 2021 03:23
-
-
Save minhchu/08a412f7d5c058e8ed6314a11f9dc4d3 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<head> | |
<meta charset="utf-8"> | |
<title>Library Website</title> | |
<!-- CSS only --> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous"> | |
<!-- JavaScript Bundle with Popper --> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous"></script> | |
</head> | |
<body> | |
<button class="btn btn-primary">Click Me !!!</button> | |
<button class="btn btn-warning">Hello</button> | |
<button class="btn btn-danger">Hello</button> | |
<form class="col-md-3"> | |
<label class="form-label">Name</label> | |
<input class="form-control" type="text" name="name"> | |
<button class="btn btn-primary">Submit</button> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment