I am trying to add an image to my website:
https://i.sstatic.net/giAdT.jpg
However, when I try to do this, the full image is not showing:
https://i.sstatic.net/VRBlB.png
This is the code I am using:
<!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>
The image should be placed within the container inside the jumbotron section.