-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<!-- Bootstrap 4 starter template --> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
|
||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" | ||
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> | ||
|
||
<title>colors background</title> | ||
</head> | ||
<body> | ||
<br> | ||
<br> | ||
<div class="container"> | ||
<!-- Text Colors --> | ||
<p class="text-primary">text-primary</p> | ||
<p class="text-secondary">text-secondary</p> | ||
<p class="text-success">text-success</p> | ||
<p class="text-info">text-info</p> | ||
<p class="text-warning">text-warning</p> | ||
<p class="text-danger">text-danger</p> | ||
<p class="text-light">text-light</p> | ||
<p class="text-dark">text-dark</p> | ||
<p class="text-white">text-white</p> | ||
<p class="text-muted">text-muted</p> | ||
<p class="text-black-50">text black 50</p> | ||
<p class="text-white-50">text white 50</p> | ||
|
||
<!-- Link Colors --> | ||
<a href="#" class="text-primary">Primary link</a> | ||
<br> | ||
<a href="#" class="text-secondary">Secondary link</a> | ||
<br> | ||
<a href="#" class="text-success">Success link</a> | ||
<br> | ||
<a href="#" class="text-info">info link</a> | ||
<br> | ||
<a href="#" class="text-warning">warning link</a> | ||
<br> | ||
<a href="#" class="text-danger">danger link</a> | ||
<br> | ||
<a href="#" class="text-light">light link</a> | ||
<br> | ||
<a href="#" class="text-dark">dark link</a> | ||
<br> | ||
<a href="#" class="text-white">white link</a> | ||
<br> | ||
<a href="#" class="text-muted">muted link</a> | ||
<br> | ||
<br> | ||
|
||
<!-- Background Colors --> | ||
<div class="bg-primary text-white">Background Primary Color</div> | ||
<div class="bg-secondary">Background secondary Color</div> | ||
<div class="bg-success">Background success Color</div> | ||
<div class="bg-info">Background info Color</div> | ||
<div class="bg-warning">Background warning Color</div> | ||
<div class="bg-danger">Background danger Color</div> | ||
<div class="bg-light">Background light Color</div> | ||
<div class="bg-dark text-danger">Background dark Color</div> | ||
<div class="bg-white">Background white Color</div> | ||
<div class="bg-transparent">Background transparent Color</div> | ||
|
||
|
||
<!-- Invisible --> | ||
<p class="invisible">Invisible</p> | ||
|
||
<div style="margin-bottom:200px;"></div> | ||
|
||
|
||
</div> | ||
<!-- Optional JavaScript --> | ||
<!-- jQuery first, then Popper.js, then Bootstrap JS --> | ||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" | ||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" | ||
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" | ||
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |