-
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.
Some basic styling, and utilities in Bootstrap
- Loading branch information
1 parent
91094cb
commit 6407e50
Showing
1 changed file
with
24 additions
and
3 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 |
---|---|---|
|
@@ -13,8 +13,10 @@ | |
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Welcome to Bootstrap!</h1> | ||
<p> | ||
<h1 class="display-2 text-center text-warning bg-secondary my-2 py-2"> | ||
Welcome to Bootstrap! | ||
</h1> | ||
<p class="lead"> | ||
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Necessitatibus | ||
id magni omnis voluptas veniam, at quisquam ad neque facere ipsam? Lorem | ||
ipsum dolor sit amet consectetur adipisicing elit. Aliquam, consectetur | ||
|
@@ -24,13 +26,32 @@ <h1>Welcome to Bootstrap!</h1> | |
vitae sapiente itaque, illum aut vel excepturi repudiandae corrupti | ||
quaerat, ea molestias distinctio. | ||
</p> | ||
<h2 class="display-4 py-2"> | ||
Display Typography <span class="badge bg-info">Good</span> | ||
</h2> | ||
<button class="btn btn-primary">Primary</button> | ||
<button class="btn btn-success">Success</button> | ||
<button class="btn btn-info btn-sm">Info</button> | ||
<button class="btn btn-info"> | ||
<span class="badge rounded-pill text-bg-info">Info</span> | ||
</button> | ||
<button type="button" class="btn btn-link">Link</button> | ||
<button type="button" class="btn btn-lg btn-outline-warning"> | ||
Warning | ||
</button> | ||
<figure class="py-4 text-center"> | ||
<blockquote class="blockquote"> | ||
<p>A well-known quote, contained in a blockquote element.</p> | ||
</blockquote> | ||
<figcaption class="blockquote-footer"> | ||
Someone famous in <cite title="Source Title">Source Title</cite> | ||
</figcaption> | ||
</figure> | ||
<div class="btn-group"> | ||
<button class="btn btn-success">One</button> | ||
<button class="btn btn-success">Two</button> | ||
<button class="btn btn-success">Three</button> | ||
<p class="mx-2">Button Groups</p> | ||
</div> | ||
</div> | ||
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" | ||
|