416-962-4444

647-760-3234

Icon

416-962-4444

ABOUT TORONTO COSMETIC SURGERY CLINIC

Welcome to La Fontaine Source De Jeunesse, Toronto’s premier and oldest cosmetic surgery clinic; we are a world-class Cosmetic Surgery Clinic. We specialize in both surgical and non-surgical procedures, and we are proud to have top Canadian certified plastic surgeons. Our clinic is recognized as a Class III Ambulatory Surgery Facility by the Canadian Association for Accreditation of Ambulatory Surgical Facilities (CAAASF), and we ensure the highest standards of safety and care.

We offer a range of cosmetic surgeries including

Under the expertise of renowned Canadian certified plastic surgeons, right in the heart of Toronto. Experience excellence in cosmetic surgery with Toronto Cosmetic Surgery Clinic!




    What is 6 + 4 ?


    Cosmetic Surgeries Offered

    @ La Fontaine Source De Jeunesse
    Beautiful & Attractive Results

    Enhance Your Appearance and Boost Your Confidence

    Welcome to our cosmetic surgery clinic, where our warm and inviting atmosphere is designed to make you feel comfortable as we discuss your personal beauty goals. Our dedicated team is committed to creating a personalized treatment plan reflecting your vision for a refreshed and rejuvenated appearance. We prioritize the highest standards of patient care and stay at the forefront of cosmetic and plastic surgery innovations. Our compassionate and skilled surgeons will guide you throughout your transformative journey. Located near Yonge & Bloor in downtown Toronto, our plastic surgery clinic consists of highly professional, well-trained, and talented medical practitioners who utilize state-of-the-art equipment to address all your surgical and non-surgical needs. Experience the difference at our clinic and embark on a path to renewed confidence today.

    Our Procedures

    View Our Services!
    Fillers and injectables
    Chin Surgery

    A well-defined chin helps give balance to your face and is a major part of your profile.

    Fillers and injectables
    Dermal Fillers

    Dermal fillers add volume and fullness to wrinkles, creases, and gaps, thereby enhancing their appearance.

    Fillers and injectables
    Chemical Peels

    Chemical peels are non-invasive and viable option for facial rejuvenation.

    Fillers and injectables
    Laser Cosmetology

    Effortlessly and swiftly eliminate undesired hair from any part of your body without experiencing pain.

    Canada’s TOP Cosmetic Surgeons!

    La Fontaine Source De Jeunesse houses Canada’s top cosmetic surgeons, recognized for their unparalleled expertise in Cosmetic Surgery. Our expert plastic surgeons are renowned for their experience, dedication to patient care, and commitment to achieving natural and outstanding results.

     

    All Surgeons are not only certified by the Canadian Association for Accreditation of Ambulatory Surgical Facilities (CAAASF), but they all bring a wealth of experience and a personalized approach to every procedure, from advanced facial rejuvenation to body contouring. Trust in our CAAASF-certified experts for a cosmetic journey that prioritizes your well-being every step of the way.

    Book Your Free Assessment Today

    Our Doctors

    Dr. William El Masri

    Doctor William S. El-Masri is one of the

    toronto cosmetic clinic
    Dr. Guillermo Castillo

    Dr. Guillermo Castillo is a fellow of the Royal College

    Dr. Lawrence Cohen
    Dr. Lawrence Cohen

    Dr. Ashwin Maharaj obtained his undergraduate degree

    Brian
    Dr. Brian Yeung, N.D.

    Dr. Brian Yeung, B.Sc (Hons), ND,

    toronto cosmetic surgery clinic
    Dr. Leonard Bienenstock, M.D.

    The newest addition to our esteemed pool of doctors

    Dr. Ronald Levine

    Dr. Ronald Levine is a leading and eminent plastic surgeon in Canada.

    Testimonials

    “My microdermabrasion sessions for my full body with Terezia were actually enjoyable. I have to say I’m pretty impressed. My skin appears smoother and the tone is improved. I recommend trying it out.”

    KAVITA

    “I’ve noticed a significant improvement in my skin. I used a lot of make-up in the past to hide my skin due to sun damage, freckles, and fine lines. After having my Photofacial treatments, I get compliments frequently that I look younger, healthier, and happier. And the best thing, without a doubt, my skin looks flawless!”

    PATRICIA

    “La Fontaine staff is amazing. I’ve been treated with so much respect when I had my procedure. I was very relaxed and at ease due to the professionalism of the staff. Thank you for a job well done!”

    JEN ROSELLE

    Testimonials

    “My microdermabrasion sessions for my full body with Terezia were actually enjoyable. I have to say I’m pretty impressed. My skin appears smoother and the tone is improved. I recommend trying it out.”

    KAVITA

    “I’ve noticed a significant improvement in my skin. I used a lot of make-up in the past to hide my skin due to sun damage, freckles, and fine lines. After having my Photofacial treatments, I get compliments frequently that I look younger, healthier, and happier. And the best thing, without a doubt, my skin looks flawless!”

    PATRICIA

    “La Fontaine staff is amazing. I’ve been treated with so much respect when I had my procedure. I was very relaxed and at ease due to the professionalism of the staff. Thank you for a job well done!”

    JEN ROSELLE

    Lastest News

    Read Our Blog

    Our Hours

    tag on yout theme's header.php Read the detailed step-by-step at https://humbertosilva.com/visual-composer-infinite-image-carousel/ */ // auxiliary code to create triggers for the add and remove class for later use (function($){ $.each(["addClass","removeClass"],function(i,methodname){ var oldmethod = $.fn[methodname]; $.fn[methodname] = function(){ oldmethod.apply( this, arguments ); this.trigger(methodname+"change"); return this; } }); })(jQuery); // main function for the infinite loop function vc_custominfiniteloop_init(vc_cil_element_id){ var vc_element = '#' + vc_cil_element_id; // because we're using this more than once let's create a variable for it window.maxItens = jQuery(vc_element).data('per-view'); // max visible items defined window.addedItens = 0; // auxiliary counter for added itens to the end // go to slides and duplicate them to the end to fill space jQuery(vc_element).find('.vc_carousel-slideline-inner').find('.vc_item').each(function(){ // we only need to duplicate the first visible images if (window.addedItens < window.maxItens) { if (window.addedItens == 0 ) { // the fisrt added slide will need a trigger so we know it ended and make it "restart" without animation jQuery(this).clone().addClass('vc_custominfiniteloop_restart').removeClass('vc_active').appendTo(jQuery(this).parent()); } else { jQuery(this).clone().removeClass('vc_active').appendTo(jQuery(this).parent()); } window.addedItens++; } }); // add the trigger so we know when to "restart" the animation without the user knowing about it jQuery('.vc_custominfiniteloop_restart').bind('addClasschange', null, function(){ // navigate to the carousel element , I know, its ugly ... var vc_carousel = jQuery(this).parent().parent().parent().parent(); // first we temporarily change the animation speed to zero jQuery(vc_carousel).data('vc.carousel').transition_speed = 0; // make the slider go to the first slide without animation and because the fist set of images shown // are the same that are being shown now the slider is now "restarted" without that being visible jQuery(vc_carousel).data('vc.carousel').to(0); // allow the carousel to go to the first image and restore the original speed setTimeout("vc_cil_restore_transition_speed('"+jQuery(vc_carousel).prop('id')+"')",100); }); } // restore original speed setting of vc_carousel function vc_cil_restore_transition_speed(element_id){ // after inspecting the original source code the value of 600 is defined there so we put back the original here jQuery('#' + element_id).data('vc.carousel').transition_speed = 600; } // init jQuery(document).ready(function(){ // find all vc_carousel with the defined class and turn them into infine loop jQuery('.vc_custominfiniteloop').find('div[data-ride="vc_carousel"]').each(function(){ // allow time for the slider to be built on the page // because the slider is "long" we can wait a bit before adding images and events needed var vc_cil_element = jQuery(this).prop("id"); setTimeout("vc_custominfiniteloop_init('"+vc_cil_element+"')",2000); }); });

    Toronto © 2024. All rights reserved.