File: /home/durgeshpandey215/public_html/ipsol.skilladders.com/index_copy.php
<?php
require_once 'controller/DB_Config.php';
$con = OpenCon();
?>
<!doctype html>
<html>
<head>
<style>
#test
{
border: #000 1.5px solid;
padding: 10px 40px 40px 40px;
}
#Header {
display: none;
}
#Header.visible {
display: block;
}
#test {
display: none;
}
#test.visible {
display: block;
}
.authority{
aspect-ratio:16/9;
display:flex;
justify-content:center;
align-item:center;
}
@media only screen and (max-width: 600px) {
.authority h5{
margin-top:25px;
}
.authority{
aspect-ratio:auto;
}
}
.authority h5{
font-size:30px;
}
</style>
<meta charset="utf-8">
<title>CCIE, CCNP, CCNA, CISCO Certification | IT Training in Mumbai | IPsol</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta name="Description" content="IPsolutions is Cisco CCIE, CCNP, CCNA certification and IT training institute in Mumbai, India. CCNA, CCNP, CCIE (R&S, VOICE, SECURITY) Training. 100% placement assistance."/>
<link rel="canonical" href="https://www.ipsol.in/" />
<!-- Bootstrap CSS File -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<!-- Google Tag Manager -->
<script language="javascript" >(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-PH5QQMK');
</script>
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<!--<link href="img/favicon.png" rel="icon">-->
<script language="javascript" src="https://maps.googleapis.com/maps/api/js?sensor=true&v=3"></script>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700|Raleway:300,400,400i,500,500i,700,800,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Carrois+Gothic" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Italiana" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Quattrocento+Sans" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<!-- Responsive Stylesheet File -->
<link href="css/responsive.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/nivo-slider/css/nivo-slider.css" rel="stylesheet">
<link href="lib/owlcarousel/owl.carousel.css" rel="stylesheet">
<link href="lib/owlcarousel/owl.transitions.css" rel="stylesheet">
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/venobox/venobox.css" rel="stylesheet">
<!-- Nivo Slider Theme -->
<link href="css/nivo-slider-theme.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-83909552-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-83909552-1');
</script>
<!-- Facebook Pixel Code -->
<script language="javascript">
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '149962642487528');
fbq('track', 'PageView');
</script>
<script language="javascript" type="text/javascript">
var exam_pos=0, test, Header, question, choice, choices, chA, chB, chC,correct=0;
var questions =[<?php
$sql1 = "SELECT * FROM `exam_website_details` where id = 1";
$result1 = mysqli_query($con,$sql1);
$row1 = mysqli_fetch_array($result1, MYSQLI_ASSOC);
$sql2 = "SELECT * FROM `exam_website_questions` where attempt_id = 1 ORDER BY RAND() LIMIT ".$row1['attempt_count'];
$result2 = mysqli_query($con,$sql2);
while($row2 = mysqli_fetch_assoc($result2)){
?>
["<?=str_replace(PHP_EOL, "<br>",$row2['question'])?>","<?=$row2['option_a']?>","<?=$row2['option_b']?>","<?=$row2['option_c']?>","<?=$row2['option_d']?>","<?=$row2['answer']?>"],
<?php
}
?>
];
function _(x) {
// body...
return document.getElementById(x);
}
function renderQuestion() {
// body...
test =_("test");
if(exam_pos >= questions.length)
{
test.innerHTML="<div class='row'><div class=' col-sm-offset-4 col-sm-4' ><br><center><h2>You got "+correct+" of "+questions.length+" question</h2></center></div></div>";
_("Header").innerHTML="Test completed";
exam_pos=0;
correct=0;
return false;
}
_("Header").innerHTML="Question "+(exam_pos+1)+" of "+questions.length
question = questions[exam_pos][0];
chA = questions[exam_pos][1];
chB = questions[exam_pos][2];
chC = questions[exam_pos][3];
chD = questions[exam_pos][4];
test.innerHTML = "<form><div class='row'><div class=' col-sm-offset-2 col-sm-10' ><h2>"+question+"</h2></div></div>";
test.innerHTML += "<div class='row'><br><div class='col-sm-offset-2 col-md-10 ' style='font-size : 20px'><input type='radio' name='choices' value='A' class='ans_opt' id='A'> <label for='A'> "+chA+" </label></div></div>";
test.innerHTML += "<div class='row'><br><div class='col-sm-offset-2 col-md-10 ' style='font-size : 20px'><input type='radio' name='choices' value='B' class='ans_opt' id='B'> <label for='B'> "+chB+"</label></div></div>";
test.innerHTML += "<div class='row'><br><div class='col-sm-offset-2 col-md-10 ' style='font-size : 20px'><input type='radio' name='choices' value='C' class='ans_opt' id='C'> <label for='C'> "+chC+"</label></div></div>";
test.innerHTML += "<div class='row'><br><div class='col-sm-offset-2 col-md-10 ' style='font-size : 20px'><input type='radio' name='choices' value='D' class='ans_opt' id='D'> <label for='D'> "+chD+"</label></div></div>";
test.innerHTML += "<div class='row'><div class='col-sm-offset-4 col-sm-4'><br><button onclick='checkans()' class='btn btn-success col-sm-12 '>Submit Answer</button></div></div></form>";
}
function checkans() {
// body...
choices = document.getElementsByName("choices");
var ans_opt = $(".ans_opt:checked").val();
// alert(question_id);
if(ans_opt != null ){
for (var i = 0; i<choices.length;i++) {
if(choices[i].checked)
{
choice=choices[i].value;
}
}
if(choice==questions[exam_pos][5])
{
correct++;
}
exam_pos++;
renderQuestion() ;
}else{
alert('Please Select Option !');
}
}
window.addEventListener("load",renderQuestion,false);
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=149962642487528&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
<!-- =======================================================
======================================================= -->
<!--google Recaptcha API-->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body data-spy="scroll" data-target="#navbar-example" style="position:unset !important;">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PH5QQMK"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="preloader">
<div id="background">
</div>
<div id="container">
<div id="large-circle-outer">
<div id="large-circle-inner">
</div>
</div>
<div id="small-circle-outer">
<div id="small-circle-inner">
</div>
</div>
<div id="body">
<div id="box">
</div>
<div id="lens">
</div>
<div id="legs">
<div id="leg-1">
</div>
<div id="leg-2">
</div>
</div>
</div>
</div>
</div>
<?php include_once 'navbar.php' ;?>
<!-- header end -->
<!-- Faq area start -->
<div class="faq-area bnr4">
<?php include_once "course_banner.php";?>
</div>
<!-- End Faq Area -->
<div id="Exam about" class="container about-area area-padding" style=" background-image: linear-gradient( #0635b1 , #337ab7);border-radius:5px; margin-top:10px; margin-bottom:10px;">
<div class="row">
<div class="col-sm-offset-4 col-sm-4">
<div class="section-headline text-center" >
<h2 style="color:#fff;">Test Your Knowledge</h2>
<p style="color:#fff;">Demo Exam to test your skills</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-offset-4 col-sm-4" >
<center>
<button id="button" class="btn btn-lg btn-success">Exam Start</button></center>
</div>
</div>
<div class='row'>
<div class=' col-sm-offset-4 col-sm-4' >
<center> <h2 id='Header' style="color:#fff;"></h2></center>
</div>
</div>
<div id='test'></div>
</div>
<!-- Start Slider Area -->
<div id="home" class="">
<div class="bend niceties preview-2">
<div id="ensign-nivoslider" class="slides">
<?php
$sql1 = "SELECT * FROM `banner`";
$result1 = mysqli_query($con,$sql1);
$i = 0;
while($row = mysqli_fetch_assoc($result1))
{ $i++;
?>
<img src="img/slider_img/<?php echo $row['img_name']?>" alt="Slider Image 1" title="#slider-direction-<?php echo $i;?>" />
<?php
}
?>
</div>
<?php
$sql1 = "SELECT * FROM `banner`";
$result1 = mysqli_query($con,$sql1);
$i = 0;
while($row = mysqli_fetch_assoc($result1))
{ $i++;
?>
<!-- direction 1 -->
<div id="slider-direction-<?php echo $i;?>" class="slider-direction ">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="slider-content">
<!-- layer 1 -->
<div class="layer-1-1 wow slideInDown" data-wow-duration="2s" data-wow-delay=".2s">
<h2 class="title1" >WELCOME TO IP Solutions </h2>
</div>
<!-- layer 2 -->
<div class="layer-1-2 wow slideInDown" data-wow-duration="2s" data-wow-delay=".2s">
<h6 class="title1" style="color:#ffff;"><?php echo $row['title'];?></h6>
</div>
<!-- layer 3 -->
<div class="layer-1-3 hidden-xs wow slideInUp" data-wow-duration="2s" data-wow-delay=".2s">
<!-- <a class="ready-btn right-btn page-scroll" href="services.html">COURSES</a> -->
<a class="ready-btn page-scroll" href="about-us.php">Know More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
}
?>
</div>
</div>
<!-- End Slider Area -->
<!-- Start About area -->
<div id="about" class="about-area area-padding">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<h2>Experts In It Networking And Administration Training And CCIE BOOT CAMP (R&S, Voice, Security And Service Provider).</h2>
</div>
</div>
</div>
<div class="row">
<!-- single-well start-->
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="well-left">
<div class="single-well">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
<li data-target="#myCarousel" data-slide-to="4"></li>
<li data-target="#myCarousel" data-slide-to="5"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="img/about/3.jpg" alt="Chania" >
<div class="carousel-caption">
<h3></h3>
<p></p>
</div>
</div>
<div class="item">
<img src="img/about/4.jpg" alt="Flower" >
<div class="carousel-caption">
<h3></h3>
<p></p>
</div>
</div>
<div class="item">
<img src="img/about/11.jpg" alt="Flower" >
<div class="carousel-caption">
<h3></h3>
<p></p>
</div>
</div><div class="item">
<img src="img/about/21.jpg" alt="Flower" >
<div class="carousel-caption">
<h3></h3>
<p></p>
</div>
</div>
<div class="item">
<img src="img/about/17.jpg" alt="Flower" >
<div class="carousel-caption">
<h3></h3>
<p></p>
</div>
</div>
<div class="item">
<img src="img/about/8.jpg" alt="Flower" >
<div class="carousel-caption">
<h3></h3>
<p></p>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<!-- single-well end-->
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="well-middle">
<div class="single-well text-justify">
<p>CTO Javed Khan – Triple CCIE widely recognized as one of the world’s leading Cisco instructors, he takes CCIE Routing and Switching training, CCIE Security training, CCNP Security training and CCNP Voice training batches in IP Solutions. He also extensively travels world wide to deliver training in other countries.<br>
<strong>JAVED KHAN (CCIE# 15427):<br>
TRIPLE CCIE: R&S, SP & Security is IPSOL’s Lead CCIE training expert!</strong>
<br><br><br><strong>We don't have any branches.<br>
</p>
<h4>
<a href="about-us.php">Read More...</a></h4>
</div>
</div>
</div>
<!-- End col-->
</div>
</div>
</div>
<!-- End About area -->
<!-- Start Service area
<div id="services" class="services-area area-padding">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline services-head text-center">
<h2>OUR SERVICES</h2>
</div>
</div>
</div>
<div class="row text-center">
<div class="services-contents">
<!-- Start Left services
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="about-move">
<div class="services-details">
<div class="single-services">
<a class="services-icon" href="#">
<i class="fa fa-video-camera"></i>
</a>
<h4>DIGITAL AD FILMS</h4>
<p class="text-justify">Digital advertising films have driven extraordinary growth in advertising field for
last couple of years as social media started playing a significant role in our day-
to-day life. BIG FISH FILMS, Mumbai determined to catch this momentum and
drive the industry forward by connecting brands and people with its unique
impactful digital ad films. You can promote your product with these impactful
digital films on YouTube, Facebook, Instagram, Twitter or any powerful social
media platform.</p>
</div>
</div>
<!-- end about-details
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="about-move">
<div class="services-details">
<div class="single-services">
<a class="services-icon" href="#">
<i class="fa fa-camera-retro"></i>
</a>
<h4>ADVERTISING FILMS OR TELEVISION COMMERCIALS</h4>
<p class="text-justify">With changing trends when brands are faced with challenges around the globe
for attention, recognition and emotional connection with its viewers, Advertising
filmmaking has never been more powerful. BIG FISH FILMS empowers
advertisers to involve with a captive audience who has actively chosen to pay
attention to the most premium content that shapes the future cultural moments.</p>
</div>
</div>
<!-- end about-details
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<!-- end col-md-4
<div class=" about-move">
<div class="services-details">
<div class="single-services">
<a class="services-icon" href="#">
<i class="fa fa-camera"></i>
</a>
<h4>CORPORATE FILMS</h4>
<p class="text-justify"> The Corporate Film, if properly implemented and targeted can be a strong and
convincing mode of communication. We are experts on our clients from
different business sectors to help them achieve their target as every sector has
its own unique challenge and demand. BIG FISH FILMS invariably helps its
clients to enhance their business prospects by showcasing their products or
services with international standard corporate films and corporate presentation
videos made by us.</p>
</div>
</div>
<!-- end about-details
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<a href="services.html"><h3>View More</h3></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Service area -->
<!-- our-skill-area start
<div class="our-skill-area fix hidden-sm">
<div class="test-overly"></div>
<div class="skill-bg area-padding-2">
<div class="container">
<!-- section-heading end
<div class="row">
<div class="skill-text">
<!-- single-skill start
<div class="col-xs-12 col-sm-3 col-md-3 text-center">
<div class="single-skill">
<div class="progress-circular">
<input type="text" class="knob" value="0" data-rel="95" data-linecap="round" data-width="175" data-bgcolor="#fff" data-fgcolor="#3EC1D5" data-thickness=".20" data-readonly="true" disabled>
<h3 class="progress-h4">Ad Films</h3>
</div>
</div>
</div>
<!-- single-skill end -->
<!-- single-skill start
<div class="col-xs-12 col-sm-3 col-md-3 text-center">
<div class="single-skill">
<div class="progress-circular">
<input type="text" class="knob" value="0" data-rel="85" data-linecap="round" data-width="175" data-bgcolor="#fff" data-fgcolor="#3EC1D5" data-thickness=".20" data-readonly="true" disabled>
<h3 class="progress-h4">Work Hours</h3>
</div>
</div>
</div>
<!-- single-skill end -->
<!-- single-skill start
<div class="col-xs-12 col-sm-3 col-md-3 text-center">
<div class="single-skill">
<div class="progress-circular">
<input type="text" class="knob" value="0" data-rel="75" data-linecap="round" data-width="175" data-bgcolor="#fff" data-fgcolor="#3EC1D5" data-thickness=".20" data-readonly="true" disabled>
<h3 class="progress-h4">Cup of Coffee</h3>
</div>
</div>
</div>
<!-- single-skill end -->
<!-- single-skill start
<div class="col-xs-12 col-sm-3 col-md-3 text-center">
<div class="single-skill">
<div class="progress-circular">
<input type="text" class="knob" value="0" data-rel="65" data-linecap="round" data-width="175" data-bgcolor="#fff" data-fgcolor="#3EC1D5" data-thickness=".20" data-readonly="true" disabled>
<h3 class="progress-h4">Clients</h3>
</div>
</div>
</div>
<!-- single-skill end
</div>
</div>
</div>
</div>
</div>
<!-- our-skill-area end -->
<div class="container my-4">
<div class="custome-carousel-container ">
<div class="custome-carousel-wrapper" >
<div class="custome-carousel">
<div class="custome-carousel-item"><img src="img\brand-img\ibm.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\coforge.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\hpe.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\infosys.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\Juniper.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\Kaizenglobe.jpg" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\mindtree.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\mphasis.jpg" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\nvidia.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\oracle.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\sap.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\techmahindra.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\tencent.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\vmware.jpg" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\wipro.png" alt=""></div>
<div class="custome-carousel-item"><img src="img\brand-img\hexaware.png" alt=""></div>
</div>
</div>
</div>
</div>
<section>
<div class="container" >
<div class="row" style="margin-top:20px; margin-botton:20px;" >
<div class="col-md-6">
<img src="img\background\sharan_shabkeh_gostar.jpg" alt="sharan shabkeh gostar" class="m-auto" style="display:block; width:100%; height:auto; margin:auto; aspect-ratio:16/10;">
</div>
<div class="col-md-6 " style="">
<div class="authority">
<h5 style=" font-weight:600; margin:10px; align-self:center;">Authorised partner in Iran</h5>
</div>
</div>
<!--<div style="margin:20px;">-->
<!--<img src="img\background\sharan_shabkeh_gostar.jpg" alt="sharan shabkeh gostar" class="m-auto" style="display:block; width:320px; height:220px; margin:auto;">-->
<!--<h5 style="text-align: center; font-weight:500; font-size:25px; margin:10px;">Authorised partner in Iran</h5>-->
<!--</div>-->
</div>
</div>
</section>
<div id="about" class="about-area area-padding">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<h2>Why choose IPsolutions?</h2>
</div>
</div>
</div>
<div class="row">
<!-- single-well start-->
<!-- single-well end-->
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="well-middle">
<div class="single-well text-justify">
<ul class="list_ul">
<li><i class="fa fa-check-square-o"></i>Biggest Infrastructure - we own India’s largest infrastructure for Cisco certification training</li>
<li><i class="fa fa-check-square-o"></i>We are a perfect synergy of IT Training and Network Solutions</li>
<li><i class="fa fa-check-square-o"></i>Equipped with latest systems and devices available in the industry today</li>
<li><i class="fa fa-check-square-o"></i>State of Art Lab</li>
<li><i class="fa fa-check-square-o"></i>Qualified and experienced Instructors</li>
<li><i class="fa fa-check-square-o"></i>Subject matter experts with industrial experience</li>
<li><i class="fa fa-check-square-o"></i>100% Placement assistance </li>
<li><i class="fa fa-check-square-o"></i>We subject our students to some real time situations for better learning</li>
<li><i class="fa fa-check-square-o"></i>Institute located at the heart of Dadar, Mumbai</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="well-left">
<div class='embed-container'><iframe src='' frameborder='0' allowfullscreen></iframe></div>
</div>
</div>
<!-- End col-->
</div>
<h4 class="text-center"><a href="#"></a></h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Team Area
<!-- Start portfolio Area -->
<!-- Start Suscrive Area -->
<div class="container-fluid bnr1">
<div class="row">
<!-- Start Google Map -->
<div class="col-md-6 col-sm-6 col-xs-12">
<!-- Start Map -->
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d15087.903968047962!2d72.84288530000002!3d19.020779550000004!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0000000000000000%3A0xbccac7faae84a04f!2sIPsolutions!5e0!3m2!1sen!2sin!4v1415712270900" width="100%" height="380" frameborder="0" style="border:0;margin-right:10px;margin-top:100px;"></iframe>
<!-- End Map -->
</div>
<!-- End Google Map -->
<!-- Start contact -->
<?php include 'contact_form.php';?>
<!-- End Left contact -->
</div></div>
<!-- End Suscrive Area -->
<!-- awesome-portfolio end -->
<!-- Start Testimonials -->
<div class="testimonials-area">
<div class="testi-inner area-padding">
<div class="testi-overly"></div>
<div class="container ">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<h2 style="color:#fff;">Testimonials</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<!-- Start testimonials Start -->
<div class="testimonial-content text-center">
<a class="quate" href="#"><i class="fa fa-quote-right"></i></a>
<!-- start testimonial carousel -->
<div class="testimonial-carousel">
<?php
$sql = "select * from `testimonials`";
$result = mysqli_query($con,$sql);
while($row = mysqli_fetch_assoc($result)){
?>
<div class="single-testi">
<div class="testi-text">
<p>
<?php echo $row['review']; ?>
</p>
<h6><?php echo $row['name']; ?></h6>
</div>
</div>
<!-- End single item -->
<?php
}
?>
<!-- End single item -->
</div>
</div>
<!-- End testimonials end -->
</div>
<!-- End Right Feature -->
</div>
</div>
</div>
</div>
<!-- End Testimonials -->
<!-- Floating Social Media bar Starts -->
<div class="float-sm">
<div class="fl-fl float-fb">
<i class="fa fa-facebook"></i>
<a href="https://www.facebook.com/IPSolutionsIndia/https://twitter.com/ipsolin" target="_blank"> Like us!</a>
</div>
<div class="fl-fl float-tw">
<i class="fa fa-twitter"></i>
<a href="https://twitter.com/ipsolin" target="_blank">Follow us!</a>
</div>
<div class="fl-fl float-gp">
<i class="fa fa-phone"></i>
<a href="tel:9082182793" target="_blank">Call us!</a>
</div>
<div class="fl-fl float-rs">
<i class="fa fa-envelope-o"></i>
<a href="mailto:info@ipsol.net?Subject=Hello" target="_top">Mail us!</a>
</div>
<div class="fl-fl float-ig">
<i class="fa fa-instagram"></i>
<a href="https://www.instagram.com/ipsolutionscisco/" target="_blank">Follow us!</a>
</div>
<div class="fl-fl float-pn">
<i class="fa fa-whatsapp"></i>
<a href="https://api.whatsapp.com/send?phone=919664446998&text=Welcome" method="get" target="_blan">whatsapp us!</a>
</div>
</div>
<!-- Floating Social Media bar Ends -->
<!-- Start Footer bottom Area -->
<footer>
<?php include_once 'footer.php';?>
</footer>
<?php include_once 'chatbotscript.php';?>
<!-- ASYNCHRONOUS Google Translate -->
<script language="javascript" type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({
pageLanguage: 'en',
layout: google.translate.TranslateElement.FloatPosition.TOP_RIGHT,
autoDisplay: false
}, 'google_translate_element');
}
(function () {
var googleTranslateScript = document.createElement('script');
googleTranslateScript.type = 'text/javascript';
googleTranslateScript.async = true;
googleTranslateScript.src =
'//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(
googleTranslateScript);
})();
// Cookies.set('GoogleAccountsLocale_session', 'iw', { expires: 999});
// Cookies.set('googtrans', '/en/iw', { expires: 999});
</script>
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- JavaScript Libraries -->
<script language="javascript" src="lib/jquery/jquery.min.js"></script>
<script language="javascript" src="lib/bootstrap/js/bootstrap.min.js"></script>
<script language="javascript" src="lib/owlcarousel/owl.carousel.min.js"></script>
<script language="javascript" src="lib/venobox/venobox.min.js"></script>
<script language="javascript" src="lib/knob/jquery.knob.js"></script>
<script language="javascript" src="lib/wow/wow.min.js"></script>
<script language="javascript" src="lib/parallax/parallax.js"></script>
<script language="javascript" src="lib/easing/easing.min.js"></script>
<script language="javascript" src="lib/nivo-slider/js/jquery.nivo.slider.js" type="text/javascript"></script>
<script language="javascript" src="lib/appear/jquery.appear.js"></script>
<script language="javascript" src="lib/isotope/isotope.pkgd.min.js"></script>
<script language="javascript" >
var test = document.getElementById('test');
var Header = document.getElementById('Header');
document.getElementById('button').addEventListener('click', showhide);
function showhide() {
test.classList.toggle('visible');
Header.classList.toggle('visible');
document.getElementById('button').style.visibility = "hidden";
}
(function($) {
var size;
//SMALLER HEADER WHEN SCROLL PAGE
function smallerMenu() {
var sc = $(window).scrollTop();
if (sc > 40) {
$('#header-sroll').addClass('small');
}else {
$('#header-sroll').removeClass('small');
}
}
// VERIFY WINDOW SIZE
function windowSize() {
size = $(document).width();
if (size >= 991) {
$('body').removeClass('open-menu');
$('.hamburger-menu .bar').removeClass('animate');
}
};
// ESC BUTTON ACTION
$(document).keyup(function(e) {
if (e.keyCode == 27) {
$('.bar').removeClass('animate');
$('body').removeClass('open-menu');
$('header .desk-menu .menu-container .menu .menu-item-has-children a ul').each(function( index ) {
$(this).removeClass('open-sub');
});
}
});
$('#cd-primary-nav > li').hover(function() {
$whidt_item = $(this).width();
$whidt_item = $whidt_item-8;
$prevEl = $(this).prev('li');
$preWidth = $(this).prev('li').width();
var nav_pos = $(this).position();
nav_pos = nav_pos.left+4;
$('header .desk-menu .menu-container .menu>li.line').css({
width: $whidt_item,
left: nav_pos,
opacity: 1
});
});
// ANIMATE HAMBURGER MENU
$('.hamburger-menu').on('click', function() {
$('.hamburger-menu .bar').toggleClass('animate');
if($('body').hasClass('open-menu')){
$('body').removeClass('open-menu');
}else{
$('body').toggleClass('open-menu');
}
});
$('header .desk-menu .menu-container .menu .menu-item-has-children ul').each(function(index) {
$(this).append('<li class="back"><a href="#">BACK</a></li>');
});
// RESPONSIVE MENU NAVIGATION
$('header .desk-menu .menu-container .menu .menu-item-has-children > a').on('click', function(e) {
e.preventDefault();
$(this).next('ul').addClass('open-sub');
});
// CLICK FUNCTION BACK MENU RESPONSIVE
$('header .desk-menu .menu-container .menu .menu-item-has-children ul .back').on('click', function(e) {
e.preventDefault();
$(this).parent('ul').removeClass('open-sub');
});
$('body .over-menu').on('click', function() {
$('body').removeClass('open-menu');
$('.bar').removeClass('animate');
});
$(document).ready(function(){
windowSize();
});
$(window).scroll(function(){
smallerMenu();
});
$(window).resize(function(){
windowSize();
});
})(jQuery);
</script>
<!-- Contact Form JavaScript File -->
<script language="javascript" src="js/main.js"></script>
</body>
</html>