-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonprogress.html
158 lines (152 loc) · 5.06 KB
/
onprogress.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>FisiCode</title>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="img/favicon.ico" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.11.2/css/all.css"
/>
<!-- Google Fonts Roboto -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
/>
<!-- MDB -->
<link rel="stylesheet" href="css/mdb.min.css" />
<!-- Custom styles -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!--Main Navigation-->
<header>
<style>
#intro {
background-image: url('img/Fisi_background_02.jpg');
height: 100vh;
}
/* Height for devices larger than 576px */
@media (min-width: 992px) {
#intro {
margin-top: -58.59px;
}
}
.navbar .nav-link {
color: #fff !important;
}
</style>
<!-- Navbar -->
<nav
id="main_header"
class="navbar navbar-expand-lg navbar-dark d-none d-lg-block"
style="z-index: 2000"
>
<div class="container-fluid">
<!-- Navbar brand -->
<a class="navbar-brand nav-link" href="index.html">
<strong>FisiCode</strong>
</a>
<button
class="navbar-toggler"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#navbarExample01"
aria-controls="navbarExample01"
aria-expanded="false"
aria-label="Toggle navigation"
>
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarExample01">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="login.html" rel="nofollow"
>Ingresar</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="planes.html#plans-section">Planes</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="onprogress.html" rel="nofollow"
>Sobre nosotros</a
>
</li> -->
</ul>
<!-- Icons -->
<ul class="navbar-nav d-flex flex-row">
<li class="nav-item me-3 me-lg-0">
<a
class="nav-link"
href="https://www.facebook.com/profile.php?id=100090832215492"
rel="nofollow"
target="_blank"
>
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li class="nav-item me-3 me-lg-0">
<a
class="nav-link"
href="https://chat.whatsapp.com/JxTwdieuRyCBvDny78VRSc"
rel="nofollow"
target="_blank"
>
<i class="fab fa-whatsapp"></i>
</a>
</li>
<!-- <li class="nav-item me-3 me-lg-0">
<a class="nav-link" href="" rel="nofollow" target="_blank">
<i class="fab fa-tiktok"></i>
</a>
</li> -->
</ul>
</div>
</div>
</nav>
<!-- Navbar -->
<!-- Background image -->
<div id="intro" class="bg-image shadow-2-strong">
<div class="mask" style="background-color: rgba(0, 0, 0, 0.8)">
<div
class="container d-flex align-items-center justify-content-center text-center h-100"
>
<div class="container">
<img width="55%" src="img/FisiCode_onprogress_02.png" alt="" />
</div>
</div>
</div>
</div>
<!-- Background image -->
</header>
<!--Main Navigation-->
<!-- Firesbase Scripts -->
<script type="module" src="js/firebase.js"></script>
<script type="module" src="js/firestore.js"></script>
<!-- Bootstrap 5.2 Scripts-->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
crossorigin="anonymous"
></script>
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="module" src="js/app3.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>