29 lines
996 B
Plaintext
29 lines
996 B
Plaintext
<header class="masthead text-center text-white d-flex">
|
|
<div class="container my-auto">
|
|
<div class="row">
|
|
<div class="col-lg-11 mx-auto">
|
|
<h1 class="text-uppercase">
|
|
<strong style="display:none" id="line1">Pieniądze nie są ważne</strong>
|
|
</h1>
|
|
<h1 class="text-uppercase">
|
|
<strong style="display:none" id="line2">Pieniądze są najważniejsze</strong>
|
|
</h1>
|
|
<hr style="visibility:hidden" id="line3">
|
|
</div>
|
|
<div class="col-lg-8 mx-auto" >
|
|
<p class="text-faded mb-5" style="visibility:hidden" id="line4">czyli dlaczego warto ubezpieczać należności</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<script type="text/javascript">
|
|
$( document ).ready(function() {
|
|
$('#line1').fadeIn(2000, function() {
|
|
$('#line2').fadeIn(2000, function() {
|
|
$('#line3').css("visibility","visible");
|
|
$('#line4').css("visibility","visible");
|
|
});
|
|
});
|
|
});
|
|
</script>
|