Spaces:
Paused
Paused
File size: 17,892 Bytes
d2f126b |
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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 |
<!DOCTYPE html>
<!-- saved from url=(0021)https://rubilabs.com/ -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
.chat-widget {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #145e5a;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
z-index: 1000
}
.chat-widget img {
width: 32px;
height: 32px;
padding: 4px
}
.chat-iframe-container {
position: fixed;
bottom: 100px;
right: 30px;
width: 400px;
height: 500px;
border: 1px solid #ccc;
border-radius: 10px;
padding: 10px;
box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
z-index: 1000;
display: none
}
.chat-iframe-container iframe {
width: 100%;
height: 100%;
border: none
}
.close-button {
position: absolute;
top: -12px;
right: -12px;
width: 24px;
height: 24px;
border-radius: 50%;
background-color: #145e5a;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
font-size: 18px;
font-weight: bold;
box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}
@media (max-width:767px) {
.chat-iframe-container {
width: 90%;
height: 80%;
bottom: 10px;
right: 5%;
padding: 5px
}
}
</style>
<script>
document.addEventListener("DOMContentLoaded", function () {
var chatWidget = document.createElement("div");
chatWidget.id = "chatWidget";
chatWidget.className = "chat-widget";
chatWidget.innerHTML = '<img src="//s3.amazonaws.com/appforest_uf/f1680870188261x782123797109605800/bubble2.png" alt="Chat">';
var chatIframeContainer = document.createElement("div");
chatIframeContainer.id = "chatIframeContainer";
chatIframeContainer.className = "chat-iframe-container";
chatIframeContainer.innerHTML = '<div class="close-button" id="closeButton">×</div><iframe src="https://app.chatiq.ai/chatbot3d/mikesmart/English" name="myiFrame" scrolling="yes"></iframe>';
document.body.appendChild(chatWidget);
document.body.appendChild(chatIframeContainer);
document.getElementById('chatWidget').addEventListener('click', function () {
document.getElementById('chatIframeContainer').style.display = 'block';
});
document.getElementById('closeButton').addEventListener('click', function () {
document.getElementById('chatIframeContainer').style.display = 'none';
});
});
</script>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rubilabs</title>
<link rel="icon" type="image/x-icon" href="https://rubilabs.com/favi.jpeg">
<link rel="stylesheet" href="./Rubilabs_files/style.css">
<link href="./Rubilabs_files/bootstrap.min.css" rel="stylesheet">
<!-- Latest compiled JavaScript -->
<script src="./Rubilabs_files/bootstrap.bundle.min.js.download"></script>
<!-- <link rel="stylesheet" href="./CSS/button.css"> -->
<script src="chrome-extension://mooikfkahbdckldjjndioackbalphokd/assets/prompt.js"></script></head>
<body data-new-gr-c-s-check-loaded="14.1123.0" data-gr-ext-installed="" data-new-gr-c-s-loaded="14.1125.0">
<!--Nav + Hero Section-->
<header>
<nav class="nav-bar">
<ul class="nav-parent">
<li>
<a class="logo-link" href="https://rubilabs.com/"><img src="./Rubilabs_files/newlogo.png" alt="BirdPreneur Logo" class="logo-image"></a>
</li>
<li class="extreme position-el"><a href="https://rubilabs.com/#mission" class="nav-el">Our Mission</a></li>
<li class="extreme"><a href="https://rubilabs.com/#products" class="nav-el">Our Products</a></li>
<li class="extreme"><a href="https://rubilabs.com/#benefits" class="nav-el">Benefits</a></li>
<li class="extreme"><a href="https://rubilabs.com/#order" class="nav-el">Place Order</a></li>
<li class="extreme"><a href="https://rubilabs.com/#delivery" class="nav-el">Delivery</a></li>
<li class="extreme"><a href="https://rubilabs.com/#FAQs" class="nav-el">FAQs</a></li>
<li class="extreme"><a href="https://rubilabs.com/#contact" class="nav-el">Contact Us</a></li>
<li class="extreme"><button type="button" class="btn nav-el"><a id="get" href="https://shop.rubilabs.com/">Order Now</a></button></li>
</ul>
</nav>
</header>
<!--section 1-->
<section>
<div class="container-fluid" style="--bs-gutter-x: 0">
<div class="hero-image">
<h1 class="text"><b>RubilabsVet: Delivering Animal Vaccines and Farm Inputs Directly to You</b></h1>
<p class="text">RubilabsVet offers a wide range of high-quality and affordable animal vaccines, medications, and
other <br> farm
inputs, all
delivered straight to your door. Trust RubilabsVet to keep your livestock healthy and happy.</p>
<button type="button" class="btn nav-el"><a id="hero-btn" href="https://shop.rubilabs.com/" style="text-decoration: none; font-size: 20px;">Order Now</a></button>
</div>
</div>
</section>
<!--section 2-->
<section id="mission">
<div class="container-fluid" style="background-color: #d8f2f5;">
<div class="rubi">
<h1 style=" padding: 50px;"><b>RubilabsVet Overview and Mission</b></h1>
</div>
<div class="row">
<div class="col-sm-4">
<div class="card">
<h3><b>Affordables</b></h3>
<p>RubilabsVet is committed to providing high-quality products at competitive prices.</p>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<h3><b>Quality Guaranteed</b></h3>
<p>All products are tested and approved, ensuring effective results and happy animals</p>
</div>
</div>
<!--row 2-->
<div class="col-sm-4">
<div class="card">
<h3><b>Convenient Delivery</b></h3>
<p>Get exactly what you need, when you need it, delivered directly to your doorstep.</p>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<h4><b>Exceptional Customer Service</b></h4>
<p>The RubilabsVet team is always ready to give expert advice and quick support.</p>
</div>
</div>
</div>
</div>
</section>
<!--section 3-->
<section id="products">
<div class="container-fluid" style="background-color: #3e4a95;">
<div class="rubi">
<h1 id="products-h1"><b>Products Available for Delivery</b></h1>
</div>
<div class="row" id="product">
<div class="col-sm-3">
<h3 style="margin-left: 60px;"><b>Vaccines</b></h3>
<ol>
<li>Avian Influenza</li>
<li>Bovine Viral Diarrhea</li>
<li>Pseudrabies (Aujeszky's Disease)</li>
</ol>
</div>
<div class="col-sm-3">
<!-- <img src="./img5.jpeg" alt=""> -->
<!-- <div class="card-body"> -->
<h3 style="margin-left: 60px;"><b>Medications</b></h3>
<ol>
<li>Flunixin Meglumine Injection</li>
<li>Penicillin G Procaine Injection</li>
<li>Oxytetracycline Injection</li>
</ol>
</div>
<!--row 2-->
<div class="col-sm-3">
<h3><b>Other Farm Inputs</b></h3>
<ol>
<li>Iron Dextran Injection</li>
<li>B Complex Vitamins Injection</li>
<li>Disinfectants</li>
</ol>
</div>
</div>
</div>
</section>
<!--section 4-->
<div class="container-fluid" id="benefits">
<h1 id="benefits-h1"><b>Benefits of Using RubilabsVet</b></h1>
<div class="row">
<div class="col-sm-3">
<div class="card" id="new">
<img src="./Rubilabs_files/img5.jpeg" alt="">
<div class="card-body">
<h4 style="margin-top: 30px;">Delivery Time</h4>
<p>RubilabsVet products ensure your animals stay healthy, reducing the risk of diseases.</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="card" id="new">
<img src="./Rubilabs_files/img3.jpeg" alt="">
<div class="card-body">
<h4 style="margin-top: 30px;">Increased Productivity</h4>
<p>Our products enhance growth and productivity of animals, improving farm yields.</p>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="card" id="new">
<img src="./Rubilabs_files/img2.jpeg" alt="">
<div class="card-body">
<h4 style="margin-top: 30px;">Sustainable Agriculture</h4>
<p>Our products ensure the welfare and sustainability of your farm.</p>
</div>
</div>
</div>
</div>
<!--section 5-->
<section id="order" style="margin-top: 200px;">
<div class="container-fluid" id="orders-top" style="padding-right: calc(var(--bs-gutter-x) * .0); padding-left: calc(var(--bs-gutter-x) * .0); --bs-gutter-x: 0;">
<div class="rubi" style="--bs-gutter-x: 0;">
<h3 id="rubi-h1"><b>How to Place an Order</b></h3>
</div>
<div class="row">
<div class="col-sm-3">
<h4 style="margin-left: 90px;" id="orders"><b>Step 1:</b></h4>
<h4 style="margin-left: 10px;" id="orders"><b>Select Your Products</b></h4>
<p id="order">View our range of products online, and add them to your cart.</p>
</div>
<!--row 2-->
<div class="col-sm-3">
<h4 style="margin-left: 80px;" id="orders"><b>Step 2:</b></h4>
<h4 style="margin-left: 10px;" id="orders"><b>Choose Delivery Time</b></h4>
<p id="order">Select a suitable delivery date and time that works for you.</p>
</div>
<!--row 3-->
<div class="col-sm-3">
<h4 style="margin-left: 80px;" id="orders"><b>Step 3:</b></h4>
<h4 id="orders"><b>Complete Your Order</b></h4>
<p id="order">Enter your personal and payment information to complete your purchase.</p>
</div>
</div>
</div>
</section>
<!--section 6-->
<div class="container-fluid" id="delivery">
<h1 id="benefits-h1"><b>Delivery Process and Timelines</b></h1>
<div class="row">
<div class="col-sm-3" id="deliverys">
<div class="card" id="news">
<div class="card-body">
<h4 style="margin-top: 30px;">Delivery Time</h4>
<p>Expect delivery within 3 hours from the time of purchase.</p>
</div>
</div>
</div>
<div class="col-sm-3" id="deliverys">
<div class="card" id="news">
<div class="card-body">
<h4 style="margin-top: 30px;">Delivery Fees</h4>
<p>Delivery is free for all orders worth #30k and above.</p>
</div>
</div>
</div>
<div class="col-sm-3" id="deliverys">
<div class="card" id="news">
<div class="card-body">
<h4 style="margin-top: 30px;">Delivery Locations</h4>
<p>We deliver to all locations within the Nigeria.</p>
</div>
</div>
</div>
<div class="col-sm-3" id="deliverys">
<div class="card" id="news" style="height: 250px;">
<div class="card-body">
<h4 style="margin-top: 30px;">Delivery Tracking</h4>
<p>Track your order’s progress, right from dispatch to your doorstep.</p>
</div>
</div>
</div>
</div>
</div>
<!--section 7-->
<section id="FAQs" style="--bs-gutter-x: 0">
<div class="container-fluid">
<div class="rubi">
<h1 id="fqa-h1"><b>FAQs</b></h1>
</div>
<div class="row" id="fqa">
<div class="col-sm-4">
<div class="card">
<h4 class="fqa-h3"><b>What Payment Methods Are Accepted?</b></h4>
<p>We accept all major credit and debit cards, including Visa, MasterCard, and American Express.</p>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<h4 class="fqa-h3"><b>How Do I Know If My Order Has Been Processed?</b></h4>
<p>You will receive an email confirming receipt of your order, and another email when your order has been dispatched.</p>
</div>
</div>
<!--row 3-->
<div class="col-sm-4">
<div class="card">
<h4 class="fqa-h3"><b>What Happens If I Am Not Satisfied With My Order?</b></h4>
<p>In the unlikely event that you are not fully satisfied with your order, contact our customer service team to make
arrangements for returns or exchanges.</p>
</div>
</div>
<div class="col-sm-4">
<div class="card" id="fourth" style="height: 260px;">
<h4 class="fqa-h3"><b>Are There Any Discounts Available?</b></h4>
<p>Yes! Check out our website to see our current promotions and discounts available.</p>
</div>
</div>
</div>
</div>
</section>
<!--section 8-->
<section id="contact" style="--bs-gutter-x: 0;">
<div class="container-fluid" style="--bs-gutter-x: 0; --bs-gutter-y: 0;">
<div class="footer" style="--bs-gutter-x: 0;">
<div class="row" id="conatct-col">
<!--col 1-->
<div class="col-sm-5">
<div class="card">
<img src="./Rubilabs_files/newlogo.png" alt="">
</div>
</div>
<!--col 2-->
<div class="col-sm-5">
<div class="card" id="faqs">
<h4 class="fqa-h3"><b>Contact RubilabsVet for More Information</b></h4>
<p>Looking for more information or have a question? Contact our friendly customer service team at <b>+2347016772509</b> or send an
email to <b>[email protected].</b></p>
</div>
</div>
</div>
</div>
</div>
</section>
</div><div id="chatWidget" class="chat-widget"><img src="./Rubilabs_files/bubble2.png" alt="Chat"></div><div id="chatIframeContainer" class="chat-iframe-container" style="display: none;"><div class="close-button" id="closeButton">×</div><iframe src="./Rubilabs_files/English.html" name="myiFrame" scrolling="yes"></iframe></div></body><grammarly-desktop-integration data-grammarly-shadow-root="true"><template shadowrootmode="open"><style>
div.grammarly-desktop-integration {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select:none;
user-select:none;
}
div.grammarly-desktop-integration:before {
content: attr(data-content);
}
</style><div aria-label="grammarly-integration" role="group" tabindex="-1" class="grammarly-desktop-integration" data-content="{"mode":"full","isActive":true,"isUserDisabled":false}"></div></template></grammarly-desktop-integration></html> |