I'm currently attempting to expand my bootstrap carousel to cover the entire width of the page as I believe it will provide the best visual impact. However, despite looking up solutions and trying various methods, nothing has seemed to work so far. If you have any suggestions on changing the size or layout that might improve the overall appearance, please feel free to share your thoughts. I struggle with layout design but I am eager to learn! Additionally, my images appear in SD even though they are originally HD. Would it be better to store them in the same folder as my HTML and CSS files instead of sourcing them directly from the internet?
HTML
<!DOCTYPE html>
<html>
<head>
<title>Website Template</title>
<!-- links to the css page and bootstrap -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
...
<p>CSS</p>
<pre><code>body {
padding-top: 50px;
padding-bottom: 20px;
}
.carousel img {
top: 0;
left: 0;
min-width: 100%;
height: 550px;
max-height: 550px;
width: auto;
}