Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions sha-quiz-css-bootstrap5/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Practice Bootstrap 5</title>
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" /> -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
</head>
<body>
<div class="container border border-secondary shadow-sm">
<h1 class="text-center">Latest News</h1>
<section class="d-flex row align-items-center justify-content-center">
<article class="col-sm-3">
<img src="img/img_145483_sm_nyt_incalmerdebatebidenandtrump_gettyimages-1229230871.jpg" class="img-fluid border border-secondary" />
<p class="border border-light p-3">In Calmer Debate, Biden and Trump Offer Sharply Divergent Visions for Nation</p>
</article>
<article class="col-sm-3">
<img src="img/img_145401_paobama7_sm.jpg" class="img-fluid border border-secondary" />
<p class="border border-light p-3">Obama mocks Trump's Chinese bank account: 'They would've called me Beijing Barry'</p>
</article>
<article class="col-sm-3">
<img src="img/img_145393_popefrancis_getty_sm.jpg" class="img-fluid border border-secondary" />
<p class="border border-light p-3">Pope Francis, in a shift for Church, voices support for same-sex civil unions</p>
</article>
</section>
</div>
</body>
</html>