I'm doing a web app to which I want to incorporate bootstrap as well as custom styles. The problem is that I take the default bootstrap styles but not the custom ones I apply. For example: in the index.php I have a jumbotron, which I want to customize.
<?php include('includes3/meta2.php'); ?>
//Mas codigo
<div class="jumbotron">
<div class="container"><h1>QUIENES SOMOS</h1></div>
<img src="img3/imgHeadAcercaDe.jpg">
</div>
And in the .css
/*JUMBOTRON*/
.jumbotron {
background-color: transparent;
position: relative;
padding-top: 0;
padding-bottom: 0;
}
.jumbotron img {
width: 100%;
}
.jumbotron h1{
position: absolute;
bottom: 25%;
color: #FFF;
text-shadow: 3px 3px 1px #18367c;
font-size: 40px;
font-weight: 400;
}
However, I do not take those styles since it does not look like this and when I see it through F12 it shows me that the jumbotron style takes it from bootstrap.min.css and typography, etc. inherited from body.
In the meta2.php:
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8>"
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Stylesheets-->
<link rel="stylesheet" type="text/css" href="css3/estilos.css"/>
<!--Bootstrap-->
<script
src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<link rel='stylesheet' type='text/css' href='//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css'>
How could I fix it?