22 lines
694 B
HTML
22 lines
694 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Bootstrap</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-SgOJa3DmI69IUzQ2PVdRZhwQ+dy64/BUtbMJw1MZ8t5HZApcHrRKUc4W0kG879m7" crossorigin="anonymous">
|
|
<style>
|
|
/* TODO 4: Use flexbox to center the card in the vertical and horizontal center. */
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="flex-container">
|
|
<!-- TODO 2: Add the Bootstrap Prebuilt Card here -->
|
|
<!-- TODO 3: Change the image src to display the flower.jpg image. -->
|
|
</div>
|
|
</body>
|
|
|
|
</html> |