I am currently working on a website where I have two images that are displaying vertically. However, I would like these images to be displayed horizontally with animation. I attempted to use Bootstrap to achieve this horizontal layout, but when I included the bootstrap plugin (bootstrap.min.css) in my file, both images disappeared. Can someone please assist me with this issue?
<!DOCTYPE html>
<html lang="en>
<head>
<meta charset="utf-8">
<title>Scroll effects with CSS animation</title>
<meta name="description" content="Page scroll animation using CSS animate" />
<meta name="keywords" content="css animation, loading effect, animate, scroll loading, scroll animation" />
<link rel="stylesheet" type="text/css" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="animate.css" />
<link rel="stylesheet" type="text/css" href="demo.css" />
<link rel="stylesheet" href="style.css" media="screen">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
</head>
<body>
<section class="hero overlay" data-stellar-background-ratio="0.3">
</section>
<section class="wrapper">
<div class="container">
<h2> Sport</h2>
<p>Subheading Subheading Subheading</p><br><br>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p><br>
<div class="col-md-6">
<div class="post">
<div class="box " >
<img src="img/section1.jpg" alt="" style="height:300px;width:400px; ">
<h4>Learn to sail Camps & Events at H20</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. <br>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div> </div>
</div>
<div class="col-md-6">
<div class="post2">
<div class="box">
<img src="img/section2.jpg" alt="" style="height:300px;width:400px;">
<h4> My First Sailing Experience</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. <br>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
</div>
</div>
</section>
<script src="js/bootstrap.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="viewportchecker.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('.post').addClass("hidden1").viewportChecker({
classToAdd: 'visible animated slideInLeft', // Class to add to the elements when they are visible
offset: 100
});
});
jQuery(document).ready(function() {
jQuery('.post2').addClass("hidden1").viewportChecker({
classToAdd: 'visible animated slideInRight', // Class to add to the elements when they are visible
offset: 100
});
});
</script>
</body>
</html>