-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (59 loc) · 3.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Stylesheet -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous" />
<title>Contador JS</title>
</head>
<body>
<!--SECCION con fondo con VIDEO y CONTADOR JS-->
<section class="section-video counter">
<video class="full-image to-bottom grayscale" playsinline autoplay muted loop>
<source src="assets/video/BACityBusinessCut.mp4" type="video/mp4">
</video>
<div class="container-section-number">
<div class="row mb-md-5 text-center">
<div class="col-12">
<span class="pre-title">Eficacia, Competencia, Profesionalismo</span>
<h2 class="titulo-numeros">Los <span class="resaltador"><span>Resultados</span></span> se ven en nuestros Números</h2>
</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-12 col-md-6 col-lg-3 item">
<div class="numero counter-bubble">
<span class="number" data-value="1180">000</span>
</div>
<h4>Proyectos Realizados</h4>
</div>
<div class="col-12 col-md-6 col-lg-3 item">
<div class="numero counter-bubble">
<span class="number" data-value="320">000</span>
</div>
<h4>Reconocimientos</h4>
</div>
<div class="col-12 col-md-6 col-lg-3 item">
<div class="numero counter-bubble">
<span class="number" data-value="790">000</span>
</div>
<h4>Clientes Satisfechos</h4>
</div>
<div class="col-12 col-md-6 col-lg-3 item">
<div class="numero counter-bubble">
<span class="number" data-value="25">0</span>
</div>
<h4>Años de Experiencia</h4>
</div>
</div>
</div>
</section>
<!-- Bootstrap core JavaScript ================================================== -->
<script src="https://code.jquery.com/jquery-3.6.4.slim.js" integrity="sha256-dWvV84T6BhzO4vG6gWhsWVKVoa4lVmLnpBOZh/CAHU4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<!-- Contador en JavaScript -->
<script src="js/counter.js"></script>
</body>
</html>