I want to put this picture on my website:
However when I do this is how it comes out. Without the full image showing:
Here is my code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Sarah's Calligraphy</title>
<style>
#bg{
/* background-image: url(https://i.pinimg.com/originals/b0/fd/35/b0fd3593f98cab4ae98aa4bfe064acaa.jpg); */
background-image: url(sarah2.jpg);
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div id = "bg" class="jumbotron jumbotron-fluid">
<div class="container">
</div>
</div>
</body>
</html>
Where you see Jumbotron is where the image is supposed to go. Within the container that is inside the jumbotron.

