28 lines
945 B
Plaintext
28 lines
945 B
Plaintext
<header class="masthead 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>
|
|
<br />
|
|
<h1 class="text-uppercase">
|
|
<strong style="display:none" id="line2">Pieniądze są najważniejsze</strong>
|
|
</h1>
|
|
<br />
|
|
<h3 class="text-faded" style="visibility:hidden" id="line4"><strong> czyli dlaczego warto ubezpieczać należności.</strong></h3>
|
|
</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>
|