2021-02-24 18:21:47 +00:00
|
|
|
<!DOCTYPE html>
|
2021-02-27 19:02:41 +00:00
|
|
|
<html>
|
2021-02-24 18:21:47 +00:00
|
|
|
|
|
|
|
<head>
|
2021-02-27 19:02:41 +00:00
|
|
|
<meta charset="utf-8">
|
2021-02-27 23:23:42 +00:00
|
|
|
<title>Batuhan's Bikes</title>
|
2021-02-27 19:02:41 +00:00
|
|
|
<!-- Google fonts -->
|
2021-02-27 23:23:42 +00:00
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;900&family=Ubuntu:wght@300;400;700&display=swap"
|
|
|
|
rel="stylesheet">
|
2021-02-27 19:02:41 +00:00
|
|
|
<!-- CSS stylesheet -->
|
2021-02-27 23:23:42 +00:00
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
|
|
|
|
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
2021-02-27 19:02:41 +00:00
|
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
|
|
<!-- fontawesome -->
|
2021-02-27 23:23:42 +00:00
|
|
|
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
|
|
|
|
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
|
2021-02-27 19:02:41 +00:00
|
|
|
|
|
|
|
<!-- Bootstrap Scripts -->
|
2021-02-27 23:23:42 +00:00
|
|
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
|
|
|
|
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
|
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
|
|
|
|
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
|
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
|
|
|
|
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
|
|
|
|
crossorigin="anonymous"></script>
|
2021-02-24 18:21:47 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2021-02-28 21:33:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
<section class="colored-section2" id="title">
|
2021-02-27 21:05:48 +00:00
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
<div class="container-fluid">
|
2021-02-28 21:33:00 +00:00
|
|
|
<img src="images/logo2.png" style="float:left;width:42px;height:42px; margin-right:20px; margin-top:10px">
|
2021-02-27 19:02:41 +00:00
|
|
|
|
|
|
|
<!-- Nav Bar -->
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark">
|
2021-02-27 21:05:48 +00:00
|
|
|
<a class="navbar-brand" href="#">Batuhan's Bikes</a>
|
2021-02-27 23:23:42 +00:00
|
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02"
|
|
|
|
aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
|
2021-02-27 19:02:41 +00:00
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
|
|
|
|
<ul class="navbar-nav ml-auto">
|
|
|
|
<li class="nav-item">
|
2021-02-27 23:23:42 +00:00
|
|
|
<a class="nav-link" href="#pricing">Repair Plans</a>
|
2021-02-27 19:02:41 +00:00
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
2021-02-27 23:23:42 +00:00
|
|
|
<a class="nav-link" href="#cta">Contact Us</a>
|
2021-02-27 19:02:41 +00:00
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
2021-02-27 23:23:42 +00:00
|
|
|
<a class="nav-link" href="#appointment">Appointment</a>
|
2021-02-27 19:02:41 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</nav>
|
2021-02-24 18:21:47 +00:00
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
<!-- Title -->
|
2021-02-24 18:21:47 +00:00
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-6">
|
2021-02-27 21:05:48 +00:00
|
|
|
<h1 class="big-heading">Nothing beats the high of a good bike ride. </h1>
|
2021-02-27 23:23:42 +00:00
|
|
|
<button type="button" class="btn btn-lg btn-dark download-btn"><i class="fas fa-bicycle"></i> Book an
|
|
|
|
Appointment</button>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-lg-6">
|
2021-02-27 23:47:12 +00:00
|
|
|
<img class="title-image" src="images/bike_repair1.jpg" alt="bike repair">
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-02-24 18:21:47 +00:00
|
|
|
</div>
|
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
</section>
|
2021-02-24 18:21:47 +00:00
|
|
|
|
|
|
|
|
2021-02-28 21:33:00 +00:00
|
|
|
<!-- Owner Bio -->
|
2021-02-24 18:21:47 +00:00
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
<section class="white-section" id="features">
|
2021-02-24 18:21:47 +00:00
|
|
|
|
2021-02-28 21:33:00 +00:00
|
|
|
<div class="container-fluid">
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="feature-box col">
|
|
|
|
|
|
|
|
<h1>Hey, my name is Batuhan.</h1>
|
|
|
|
<p>Ever since I was a child, it was my dream to own
|
|
|
|
a bike shop. One day after school, a bike fell out of the sky
|
|
|
|
and I could see that it was broken. I managed to fix that bike
|
|
|
|
up and use it in bike tournaments. That same bike is the one that I
|
|
|
|
used to win the national biking tournament in Bikini Bottom. To this day,
|
|
|
|
I don't know where that bike came from but I wish to pass on my good fortune to
|
|
|
|
others by helping them with their bikes. </p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="feature-box col-lg-4">
|
|
|
|
<p><img src="images\owner_pic.jpg" alt="Girl in a jacket"> </p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Features -->
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
|
|
<section class="colored-section3" id="features">
|
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
<div class="container-fluid">
|
2021-02-24 18:21:47 +00:00
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="feature-box col-lg-4">
|
|
|
|
<i class="feature-icon fas fa-check-circle fa-4x"></i>
|
2021-02-28 21:33:00 +00:00
|
|
|
<h3 class="feature-title">Fast and Easy</h3>
|
|
|
|
<p>Just leave it to us, we can fix any problem within 3 days</p>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
2021-02-24 18:21:47 +00:00
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
<div class="feature-box col-lg-4">
|
|
|
|
<i class="feature-icon fas fa-bullseye fa-4x"></i>
|
2021-02-28 21:33:00 +00:00
|
|
|
<h3 class="feature-title">Precise</h3>
|
|
|
|
<p>We can help you find what bike is right for you</p>
|
2021-02-24 18:21:47 +00:00
|
|
|
</div>
|
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
<div class="feature-box col-lg-4">
|
|
|
|
<i class="feature-icon fas fa-heart fa-4x"></i>
|
2021-02-28 21:33:00 +00:00
|
|
|
<h3 class="feature-title">Guaranteed Satisfaction</h3>
|
|
|
|
<p>All of our customers have loved their bikes. Take it from them.</p>
|
2021-02-24 18:21:47 +00:00
|
|
|
</div>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
2021-02-24 18:21:47 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
</section>
|
2021-02-28 21:33:00 +00:00
|
|
|
-->
|
2021-02-27 19:02:41 +00:00
|
|
|
|
|
|
|
<!-- Testimonials -->
|
|
|
|
|
2021-02-28 21:33:00 +00:00
|
|
|
<section class="colored-section2" id="colored-section2">
|
2021-02-27 19:02:41 +00:00
|
|
|
<div id="testimonial-carousel" class="carousel slide" data-ride="carousel">
|
|
|
|
<div class="carousel-inner">
|
2021-02-27 23:23:42 +00:00
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
<div class="carousel-item active container-fluid">
|
2021-02-27 21:05:48 +00:00
|
|
|
<h2 class="testimonial-text"> "Strong 10 from me. The service here is phenomenal." </h2>
|
|
|
|
<img class="testimonial-img" src="images\customers\Anthony.png" alt="dog-profile">
|
|
|
|
<em>Anthony Green</em>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="carousel-item container-fluid">
|
2021-02-27 23:23:42 +00:00
|
|
|
<h2 class="testimonial-text">"Thanks to the folks over at Batuhan's Bikes, I just upgraded my old bike to a
|
|
|
|
new mountain bike. Love it!" </h2>
|
2021-02-28 02:40:36 +00:00
|
|
|
<img class="testimonial-img" src="images\customers\Dottie.jpg" alt="lady-profile">
|
|
|
|
<em>Dottie Bean</em>
|
2021-02-27 21:05:48 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="carousel-item container-fluid">
|
2021-02-27 23:23:42 +00:00
|
|
|
<h2 class="testimonial-text">"Most people don't know me. If you ask any of my friends they will say I bike.
|
|
|
|
And the only place I trust to get my bikes are Batuhan's Bikes"</h2>
|
2021-02-27 21:05:48 +00:00
|
|
|
<img class="testimonial-img" src="images\customers\bobby.jpg" alt="lady-profile">
|
|
|
|
<em>Bob </em>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
2021-02-27 21:05:48 +00:00
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
<div class="carousel-item container-fluid">
|
2021-02-27 21:05:48 +00:00
|
|
|
<h2 class="testimonial-text">"The squeeze has not squoze." </h2>
|
|
|
|
<img class="testimonial-img" src="images\customers\keith.png" alt="lady-profile">
|
|
|
|
<em>Keith Value</em>
|
2021-02-24 18:21:47 +00:00
|
|
|
</div>
|
2021-02-27 21:05:48 +00:00
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
2021-02-27 23:23:42 +00:00
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
<a class="carousel-control-prev" href="#testimonial-carousel" role="button" data-slide="prev">
|
|
|
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
|
|
|
<span class="sr-only">Previous</span>
|
|
|
|
</a>
|
|
|
|
<a class="carousel-control-next" href="#testimonial-carousel" role="button" data-slide="next">
|
|
|
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
|
|
|
<span class="sr-only">Next</span>
|
|
|
|
</a>
|
2021-02-24 18:21:47 +00:00
|
|
|
</div>
|
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Press -->
|
2021-02-27 21:05:48 +00:00
|
|
|
<!---
|
2021-02-27 19:02:41 +00:00
|
|
|
<section class="colored-section" id="press">
|
|
|
|
<img class="press-img" src="images/techcrunch.png" alt="tc-logo">
|
|
|
|
<img class="press-img" src="images/tnw.png" alt="tnw-logo">
|
|
|
|
<img class="press-img" src="images/bizinsider.png" alt="biz-insider-logo">
|
|
|
|
<img class="press-img" src="images/mashable.png" alt="mashable-logo">
|
|
|
|
|
|
|
|
</section>
|
2021-02-27 21:05:48 +00:00
|
|
|
-->
|
2021-02-27 19:02:41 +00:00
|
|
|
|
|
|
|
<!-- Pricing -->
|
|
|
|
|
|
|
|
<section class="white-section" id="pricing">
|
|
|
|
|
2021-02-27 21:05:48 +00:00
|
|
|
<h2 class="section-heading">Our Bike Repair Plans</h2>
|
|
|
|
<p>Simple and affordable price plans for your bike.</p>
|
2021-02-27 19:02:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="pricing-col col-lg-4 col-md-6">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
2021-02-27 21:05:48 +00:00
|
|
|
<h3>Regular Tune Up</h3>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
2021-02-27 21:05:48 +00:00
|
|
|
<h2 class="price-text">$47.95</h2>
|
2021-02-27 23:47:12 +00:00
|
|
|
<img class="title-image" src="images/bike1.jpg" alt="bike1">
|
2021-02-27 23:23:42 +00:00
|
|
|
<p>Repair Using Standard kit</p>
|
|
|
|
<p>Part Replacement</p>
|
|
|
|
<p>Cleaning</p>
|
2021-02-27 21:05:48 +00:00
|
|
|
<button type="button" class="btn btn-block btn-outline-dark btn-lg">Buy</button>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pricing-col col-lg-4 col-md-6">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
2021-02-27 21:05:48 +00:00
|
|
|
<h3>"Tired Bike" Tune Up</h3>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
2021-02-27 21:05:48 +00:00
|
|
|
<h2 class="price-text">$59.95</h2>
|
2021-02-27 23:47:12 +00:00
|
|
|
<img class="title-image" src="images/bike2.jpg" alt="bike2">
|
2021-02-27 23:23:42 +00:00
|
|
|
<p>More Repair Using Advanced Kit</p>
|
|
|
|
<p>More Part Replacement</p>
|
|
|
|
<p>More Cleaning</p>
|
2021-02-27 21:05:48 +00:00
|
|
|
<button type="button" class="btn btn-block btn-outline-dark btn-lg">Buy</button>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
2021-02-24 18:21:47 +00:00
|
|
|
</div>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="pricing-col col-lg-4 ">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
2021-02-27 21:05:48 +00:00
|
|
|
<h3>"Roadie" Tune Up</h3>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
2021-02-27 21:05:48 +00:00
|
|
|
<h2 class="price-text">$79.95</h2>
|
2021-02-27 23:47:12 +00:00
|
|
|
<img class="title-image" src="images/bike3.jpg" alt="bike3">
|
2021-02-27 23:23:42 +00:00
|
|
|
<p>Full Repair Using Ultimate Kit</p>
|
|
|
|
<p>Full Part Replacement</p>
|
|
|
|
<p>Full Cleaning</p>
|
2021-02-27 21:05:48 +00:00
|
|
|
<button type="button" class="btn btn-block btn-outline-dark btn-lg">Buy</button>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
2021-02-24 18:21:47 +00:00
|
|
|
</div>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
2021-02-24 18:21:47 +00:00
|
|
|
</div>
|
2021-02-27 19:02:41 +00:00
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Call to Action -->
|
|
|
|
|
2021-02-28 21:33:00 +00:00
|
|
|
<section class="colored-section2" id="cta">
|
2021-02-27 23:23:42 +00:00
|
|
|
<h2 class="big-heading">Contact Us</h2>
|
|
|
|
<p style="color:white;">5 Hawthorne Avenue <br>
|
|
|
|
Ottawa, Ontario <br>
|
|
|
|
Phone: (613) 567-8180 <br>
|
|
|
|
Email: info@cycosport.ca
|
|
|
|
</p>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-8">
|
|
|
|
<div id="googleMap" style="width:70%;height:400px;margin-left:auto; margin-right:auto;"></div>
|
|
|
|
</div>
|
2021-02-27 21:05:48 +00:00
|
|
|
|
2021-02-27 23:23:42 +00:00
|
|
|
<div class="col-3-4">
|
2021-02-27 21:05:48 +00:00
|
|
|
<h2 class="big-heading-2">Opening Hours</h2>
|
|
|
|
<p style="color:white;text-align:left;padding-left:30px;">
|
2021-02-27 23:23:42 +00:00
|
|
|
Mon: 8:30 to 22:00<br>
|
|
|
|
Tue: 8:30 to 22:00<br>
|
|
|
|
Wed: 8:30 to 22:00<br>
|
|
|
|
Thu: 8:30 to 22:00<br>
|
|
|
|
Fri: 8:30 to 22:00<br>
|
|
|
|
Sat: 10:00 to 20:00<br>
|
|
|
|
Sun: 10:00 to 20:00<br>
|
2021-02-27 21:05:48 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
function myMap() {
|
2021-02-27 23:23:42 +00:00
|
|
|
var mapProp = {
|
|
|
|
center: new google.maps.LatLng(45.412085720162494, -75.68236814266143),
|
|
|
|
zoom: 18,
|
|
|
|
};
|
|
|
|
var map = new google.maps.Map(document.getElementById("googleMap"), mapProp);
|
2021-02-27 21:05:48 +00:00
|
|
|
}
|
2021-02-27 23:23:42 +00:00
|
|
|
</script>
|
|
|
|
<script
|
|
|
|
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC5TiZoTEwEcB_HUZRhe_rXrcSWW1Z5x8I&callback=myMap"></script>
|
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
</section>
|
2021-02-27 23:23:42 +00:00
|
|
|
|
|
|
|
|
2021-02-27 21:05:48 +00:00
|
|
|
<!--- Book an Appointment -->
|
2021-02-27 23:23:42 +00:00
|
|
|
<section class="white-section" id="appointment">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<form action="action_page.php">
|
2021-02-27 19:02:41 +00:00
|
|
|
|
2021-02-27 23:23:42 +00:00
|
|
|
<h2 class="big-heading">Book an Appointment</h2>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-6" style="float: right;">
|
|
|
|
<input type="text" id="fname" name="firstname" placeholder="First Name">
|
|
|
|
</div>
|
|
|
|
<div class="col-6">
|
|
|
|
<input type="text" id="lname" name="lastname" placeholder="Last Name">
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-02-28 21:33:00 +00:00
|
|
|
|
|
|
|
|
2021-02-27 23:23:42 +00:00
|
|
|
|
|
|
|
<input type="text" id="subject" name="subject" placeholder="Subject">
|
|
|
|
|
|
|
|
<textarea id="message" name="message" placeholder="Your Message" style="height:200px"></textarea>
|
|
|
|
|
2021-02-28 21:33:00 +00:00
|
|
|
<label for="appTime">Request Appointment for: </label>
|
|
|
|
<input type="datetime-local" id="birthdaytime" name="birthdaytime">
|
|
|
|
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
|
2021-02-27 23:23:42 +00:00
|
|
|
<input type="submit" value="Submit">
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</div>
|
2021-02-27 21:05:48 +00:00
|
|
|
</section>
|
2021-02-27 23:23:42 +00:00
|
|
|
|
2021-02-27 19:02:41 +00:00
|
|
|
|
|
|
|
<!-- Footer -->
|
|
|
|
|
|
|
|
<footer class="white-section" id="footer">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<i class="social-icon fab fa-twitter"></i>
|
|
|
|
<i class="social-icon fab fa-facebook"></i>
|
|
|
|
<i class="social-icon fab fa-instagram"></i>
|
|
|
|
<i class="social-icon fas fa-envelope"></i>
|
2021-02-28 15:20:44 +00:00
|
|
|
<p>© Copyright SEG3125 - Group 3</p>
|
2021-02-27 19:02:41 +00:00
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
|
2021-02-24 18:21:47 +00:00
|
|
|
</body>
|
2021-02-27 19:02:41 +00:00
|
|
|
|
2021-02-27 23:23:42 +00:00
|
|
|
</html>
|