Bed & Breakfast

function link_module_css(path) {
if(document.createStyleSheet){
document.createStyleSheet(path);
}else{
$j(‘head’).append( »);
}
}
function addLoadListener(func){if(window.addEventListener){window.addEventListener(« load »,func,false);}else if(document.addEventListener){document.addEventListener(« load »,func,false);}else if(window.attachEvent){window.attachEvent(« onload »,func);}}
function ChangeUrl(formulaire)
{if(formulaire.ListeUrl.selectedIndex!=0)
{location.href=formulaire.ListeUrl.options[formulaire.ListeUrl.selectedIndex].value;}
else
{alert(‘Veuillez choisir une rubrique.’);}}
function fck_formulaire_dynamique_check()// utilisé pour formulaires fck
{var formu=document.getElementById(‘fck_formulaire_dynamique’);var error=false;for(i=0;i<formu.length;i++)
{if(formu[i].getAttribute('required')=='required')
{try
{formu[i].onfocus=function(){this.style.backgroundColor="#fff";};}catch(e)
{formu[i].setAttribute('onfocus','style.backgroundColor="#fff"');}
if(formu[i].type=='text'||formu[i].type=='textarea')
{if(formu[i].value.length<=0)
{formu[i].style.backgroundColor='#FFCFCF';error=true;}}else if(formu[i].type=='checkbox'||formu[i].type=='radio')
{if(!formu[i].checked)
{formu[i].style.backgroundColor='#FFCFCF';error=true;}}}}
if(error)
{alert('Please fill all required fields');return false;}else
{return true;}}
function formulaire_dynamique_check_captcha(formu)// utilisé par les enquetes publiques avec captcha = 1
{
var error=false,
captchaField = "";
for(i=0;i<formu.length;i++)
{
if(formu[i].type=='text' && formu[i].name=='captcha')
{
captchaField = formu[i];
}
}
// on vérifie d'abord le captcha
new Ajax.Request(
"ajax.php",
{
method: 'get',
parameters: {page:'verifCaptcha',captcha:captchaField.value},
onSuccess: function(result){
if(result.responseText=='nok')
{
error = true;
var nb = Math.round(Math.random(0)*1000)+1;
$$('img.cryptogram').each(function(elt)
{
elt.src = './cryptographp.php?cfg=0&session=d2b4a9e622f234f0c46e8cff1a2f525f&'+nb;
});

try
{
captchaField.onfocus=function(){this.style.backgroundColor="#fff";};
}catch(e)
{
captchaField.setAttribute('onfocus','style.backgroundColor="#fff"');
}
captchaField.style.backgroundColor='#FFCFCF';
}
var checkboxes = new Array();
// Champs obligatoires
for(i=0;i<formu.length;i++)
{
if(formu[i].getAttribute('required')=='required')
{
try
{
formu[i].onfocus=function(){this.style.backgroundColor="#fff";};
}catch(e)
{
formu[i].setAttribute('onfocus','style.backgroundColor="#fff"');
}
if(formu[i].type=='text'||formu[i].type=='textarea'||formu[i].type=='file')
{
if(formu[i].value.length=2)
{
error = true;
}
}
if(error)
{
alert(‘Please fill all required fields’);
return false;
} else
{
document.getElementsByClassName(‘enquete-envoyer’)[0].update(‘

Your request is being processed. Please wait while the form is sent.

‘);
formu.submit();
}
}
}
);
return false;
}
function formulaire_dynamique_check(formu)// utilisé par les enquetes publiques avec captcha = 0
{
var error=false;
// Champs obligatoires
var checkboxes = new Array();
for(i=0;i<formu.length;i++)
{
if(formu[i].getAttribute('required')=='required')
{
try
{
formu[i].onfocus=function(){this.style.backgroundColor="#fff";};
}catch(e)
{
formu[i].setAttribute('onfocus','style.backgroundColor="#fff"');
}

if(formu[i].type=='text'||formu[i].type=='textarea'||formu[i].type=='file')
{
if(formu[i].value.length=2)
{
error = true;
}

if(error)
{alert(‘Please fill all required fields’);return false;}else
{
document.getElementsByClassName(‘enquete-envoyer’)[0].update(‘

Your request is being processed. Please wait while the form is sent.

‘);
formu.submit();
}
}
function check_options_required()
{
return check_element_options_required(false);
}
function check_element_options_required($element)
{
var valid = true;
if($element!==false)
{
var $searchIn = $element.find(‘input.required, textarea.required’);
} else
{
var $searchIn = $j(‘input.required, textarea.required’);
}
$searchIn.each(function()
{
if(this.type==’checkbox’ && !this.checked)
{
valid = false;
$j(this).fadeOut().fadeIn().fadeOut().fadeIn();
}
if(this.value.length <= 0)
{
valid = false;
$j(this).fadeOut().fadeIn().fadeOut().fadeIn();
}

var val = $j(this).val();
var temp = val.split('.');
var ext = '.'+temp[temp.length-1];
if(this.type=='file' && !in_array(ext,['.bmp','.BMP','.jpg','.JPG','.jpeg','.JPEG','.png','.PNG','.gif','.GIF','.zip','.ZIP','.pdf','.PDF','.doc','.DOC','.xls','.XLS']))
{
valid = false;
alert(" This file is not allowed ");
$j(this).fadeOut().fadeIn().fadeOut().fadeIn();
}
}
);
return valid;
}
function add_to_cart(pid)
{
// Si des requêtes sont tjs en cours d'exécution suite à un changement de quantité on temporise avant de lancer la mise à jour du panier sinon ça peut le corrompre
if(!$j('#mb_panier').data('priceLock') && !$j('#mb_panier').data('stockLock'))
{
if($j.browser.msie) // sous ie la fenêtre ne se positionne pas toute seule
{
var options = {overlayClose:true, autoPosition: true,onShow: function (d) {
d.container.css({position:'absolute',textAlign:'center'});
this.setPosition();
}};
} else
{
var options = {overlayClose:true};
}

$j('#mb_panier').html('

‘);

if(!pid)
{
// Ajout au panier de l’article de la fiche
var valid = check_options_required();
if(valid)
{
$j(‘#mb_panier’).modal(options);
$j.post(« ajax.php?page=fiche_article »,{action:’ajout_panier’,data:$j(‘#cart_quantity’).serialize()},function(data)
{
add_to_cart_complete(data);
});
}
} else
{
// Ajout au panier d’un article complémentaire (depuis les modules aussi achetés…)
$j(‘#mb_panier’).modal(options);
$j.post(« ajax.php?page=fiche_article »,{action:’ajout_panier’,pid:pid},function(data)
{
add_to_cart_complete(data);
});
}
} else
{
setTimeout(« add_to_cart(« +pid+ ») »,500);
}
}

function add_to_cart_complete(html)
{
// Mise à jour des boxes panier en parallèle
var requests = 0;
var urls = [
{elt: »#nb_articles_panier, .nb_articles_panier »,url: »ajax.php?page=fiche_article&action=maj_nb_articles_panier »},
{elt: »#total_panier »,url: »ajax.php?page=fiche_article&action=maj_total_panier »},
{elt: »#panier-complet »,url: »ajax.php?page=fiche_article&action=maj_panier-complet »},
{elt: »#cart-tooltip-container »,url: »ajax.php?page=fiche_article&action=maj_panier-bulle-v14″}
];

$j.each(urls, function()
{
var elt = this.elt;
$j.get(this.url).success(function(data)
{
$j(elt).html(data);
}).complete(function()
{
++requests;
if (requests == 3)
{
$j(‘#mb_panier’).html(html); // Remplacement du loader
}
});
});
}

//Smooth Scroll marquee
jQuery(document).ready(function($)
{
if ($(‘marquee.defilante-smooth’).length > 0)
{
$(‘marquee.defilante-smooth’).load()
{
$(‘marquee.defilante-smooth’).marquee().mouseover(function ()
{
$(this).trigger(‘stop’);
})
.mouseout(function ()
{
$(this).trigger(‘start’);
})
.mousemove(function (event)
{
if ($(this).data(‘drag’) == true)
{
this.scrollLeft = $(this)
.data(‘scrollX’) + ($(this)
.data(‘x’) – event.clientX);
}
})
.mousedown(function (event)
{
$(this).data(‘drag’, true).data(‘x’, event.clientX).data(‘scrollX’, this.scrollLeft);
})
.mouseup(function ()
{
$(this).data(‘drag’, false);
});
}
}
});

#simplemodal-overlay {background-color:#000;}
link_module_css(‘template/modules/PANIER/fenetre-ajout/fenetre-ajout.css’);


<!–

function ejs_nodroit(){
alert(‘Clic droit désactivé’);
return(false);
}
document.oncontextmenu = ejs_nodroit;

–>

link_module_css(‘template/modules/diaporama/diaporama.css’);

Spectacles

Les Cordeliers

Visite théâtralisée

Vitraux de la Cathédrale

L'orgue de la Cathédrale

Embrun illuminé sur le Roc

Détail du Trésor

Détail du Trésor

Arcatures lombardes du clocher de la Cathédrale

La Maison des Chanonges

Détail d'architecture

La Tour Brune, ancien donjon des archevêques

Anges

Les Capucins, centre d'art contemporain

Concerts à Embrun

featuredcontentslider.init({
id: « diaporama », //id of main slider DIV
contentsource: [« inline », «  »], //Valid values: [« inline », «  »] or [« ajax », « path_to_file »]
toc: « markup », //Valid values: « #increment », « markup », [« label1 », « label2 », etc]
nextprev: [«  », «  »], //labels for « prev » and « next » links. Set to «  » to hide.
revealtype: « click », //Behavior of pagination links to reveal the slides: « click » or « mouseover »
enablefade: [true, 0.1], //[true/false, fadedegree]
autorotate: [true, 5000], //[true/false, pausetime]
onChange: function(previndex, curindex){ //event handler fired whenever script changes slide
//previndex holds index of last slide viewed b4 current (1=1st slide, 2nd=2nd etc)
//curindex holds index of currently shown slide (1=1st slide, 2nd=2nd etc)
}
})

office de tourisme d'embrun, location meublés, hébergement, animations, découvrir l'embrunais

L’Eau

 

     La Montagne

 

        Le Patrimoine

 

 

 

Français English Italian Dutch
jQuery(document).ready(function($) {
$(‘img.changeLanguage_trigger’).on(‘click’,function()
{
var $this = $(this);
$.get(‘ajax.php’,{
page:’language’,
language:$this.data(‘id’),
url:$this.data(‘url’),
params:$this.data(‘params’)
}, function(data)
{
window.location.replace(data);
});
});
});

Centrale de réservation en ligne office de tourisme embrun

sfHover = function() {
var sfEls = document.getElementById(« nav »).getElementsByTagName(« LI »);
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

Quick search

jQuery(document).ready(function ($) {
$(‘#ac_keywords’).on(‘focus’, function () {
if (this.value == ‘Search :’) {
this.value =  »;
}
});
});

<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

Guide « Sortir »

launchMini(« 875/4049/17723 », « true », « 0x002e6e », « 204 », « 108 », « fr »);

contact, adresse office de tourisme d'Embrun

<!–Suivez-nous sur
–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

Météo

<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

Newsletter

function verify(form)
{
var passed = false;
var blnRetval, intAtSign, intDot, intComma, intSpace, intLastDot, intDomain, intStrLen;
if (form.sendto){
intAtSign=form.sendto.value.indexOf(« @ »);
intDot=form.sendto.value.indexOf(« . »,intAtSign);
intComma=form.sendto.value.indexOf(« , »);
intSpace=form.sendto.value.indexOf( » « );
intLastDot=form.sendto.value.lastIndexOf(« . »);
intDomain=intDot-intAtSign;
intStrLen=form.sendto.value.length;
// *** CHECK FOR BLANK sendto VALUE
if (form.sendto.value == «  » )
{
alert(« You have not entered an email address. »);
form.sendto.focus();
passed = false;
}
// **** CHECK FOR THE @ SIGN?
else if (intAtSign == -1)
{

alert(« Your email address is missing the @. »);
form.sendto.focus();
passed = false;

}
// **** Check for commas ****

else if (intComma != -1)
{
alert(« Email address cannot contain a comma. »);
form.sendto.focus();
passed = false;
}

// **** Check for a space ****

else if (intSpace != -1)
{
alert(« Email address cannot contain spaces. »);
form.sendto.focus();
passed = false;
}

// **** Check for char between the @ and dot, chars between dots, and at least 1 char after the last dot ****

else if ((intDot <= 2) || (intDomain <= 1) || (intStrLen-(intLastDot+1)


<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

Multicriteria search

function loadCriteria()
{
$j(‘#criteria_div’).load(« ajax.php?page=recherche-multicriteres&f_criteria= »+$j(‘#f_criteria’).serialize());
}
function loadAllCriteria()
{
$j(‘#criteria_div’).load(« ajax.php?page=recherche-multicriteres&f_criteria= » »);
}

Votre Hébergement

—–

Nombre de personnes

—–

Confort

—–
1 star
2 stars
3 stars
4 stars
5 stars

Localité

—–
Baratier
Chateauroux les Alpes
Crévoux
Crots
Embrun
Le Sauzedu-Lac
Les Orres
Pontis
Prunières
Puy Saint Eusèbe
Puy Sanières
Réallon
Savines le Lac
St André d’Embrun
St Sauveur

—–

—–

–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

Se déplacer

se deplacer au départ d'embrun

–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

News
link_module_css(‘template/modules/defilante-news/defilante-news.css’);

Festival d’accordéon
Samedi 5 avril
21h30

VISITE GUIDEE:
La cathédrale et son trésor
Vacances de Pâques
Les mercredis 16 et 23 avril à 10h
Le Vendredi 9 mai à 10h

Visite Virtuelle de la cathédrale

Expositions

See all the news

var boxeDefilanteNews = new BoxeDefilante(‘defilante-news-bulle’);

–>

»

» Bed & Breakfast


Page(s) :  1 
Baratier - Chambres d'hôtes - La Fernande ****
Baratier – Chambres d’hôtes – La Fernande ****
Tél.: +33 (0)4 92 43 81 13 – [email protected]


<bron and="" atmosphere.

Opened the entire year.
Capacity 15 persones: 5 rooms 2 to 5 persons.
Double rooms 98 € to 135 €. Family suite (4/5 pers) par night: 165 €.



Baratier - Chambres d'hôtes - La Fernande ****
Embrun - Chambres d'hôtes - Le Pigeonnier
Embrun – Chambres d’hôtes – Le Pigeonnier
Tél.: +33 (0)6 74 49 97 12 – [email protected]

3 charming host rooms in a beautiful house, located on the classified site of the Embrun’s archbishop palace.

Opened from 1st february 2015. Capacity 6 persons. Double room and breakfast: 130 € to 140 €.



Embrun - Chambres d'hôtes - Le Pigeonnier
Embrun - Chambre d'hôte - Villa du Lac
Embrun – Chambre d’hôte – Villa du Lac
Tél.: +33 (0)6 30 04 54 8location.fr<5 – [email protected]

Une chambre d’hôte avec véranda, terrasse et jardin, en rez-de-chaussée dans une maison calme et confortable, située à deux pas du plan d’eau d’Embrun et du lac de Serre-Ponçon. Sur place une cuisine à disposition pour la préparation de vos repas.

Ouvert toute l’année. Capacité 2 à 3 personnes.
Tarifs chambre double avec petit-déjeuners à partir de 59 €.



Embrun - Chambre d'hôte - Villa du Lac
Embrun - Chambres d'hôtes - L'Edelweiss
Embrun – Chambres d’hôtes – L’Edelweiss
Tél.: +33 (0)4 92 43 39 76 – [email protected]

4 host rooms in a villa-cottage located right in the middle of the nature, service under the veranda and panoramic vue on the mountains.

Opened from January 4th to October 20th. Capacity 12 pers. Double room and breakfast 55 € to 60 €.



Embrun - Chambres d'hôtes - L'Edelweiss
Embrun - Bed & Breakfast - Villa Christine
Embrun – Bed & Breakfast – Villa Christine
Tél.: +33 (0)6 85 02 86 77 – [email protected]

Villa with panoramic vue on the mountains, in the core of Embrun, breakfast served at the pool sides.

Opened the entire year. Capacity 9 persons.
Double room and breakfast 83 €.



Embrun - Bed & Breakfast - Villa Christine
Baratier - Chambre d'hôtes - La Muande du Berger
Baratier – Chambre d’hôtes – La Muande du Berger
Tél.: +33 (0)6 13 40 80 77
www.chalet-montagne05.com

Les Barniers – A magnificent mountain cottage completely restaured, authentical sheperd shack, welcomes you in a great comfort, 5a land, chimney, outodoor scandinavian bath, heated swimming pool during summer.
B&B, evening hiking: in winter two returns by snowmobile.




Baratier - Chambre d'hôtes - La Muande du Berger
Embrun - Chambres d'hôtes - Le Vieux Chalet
Embrun – Chambres d’hôtes – Le Vieux Chalet
Tél.: +33 (0)4 92 43 00 17 – [email protected]

The cottage was built in 1936, in the core of a large tree park. It dominates the city and has a beautiful panoramic vue

Opened the entire year. Capacity 15 persons: 5 rooms 2 to 4 pers. Double bedroom and breakfast 52 € to 60 €.



Embrun - Chambres d'hôtes - Le Vieux Chalet
Crots - Chambres d'hôtes - Le Château de Picomtal
Crots – Chambres d’hôtes – Le Château de Picomtal
Tél.: +33 (0)4 92 43 07 77 – www.picomtal.fr

Located on the balcony of the lake Serre-Ponçon, in a medieval castle, historical monument of the XVIth century, with its French gardens, large guest rooms and private suites.

Opened from April to November. Double bedroom and breakfast from 158 € to 178 €.



Crots - Chambres d'hôtes - Le Château de Picomtal
Châteauroux-les-Alpes - Chambres d'hôtes - La Ferme de Beauté
Châteauroux-les-Alpes – Chambres d’hôtes – La Ferme de Beauté
Tel: +33 (0)4 92 43 83 45 – [email protected]

4 guest rooms in an authentical old farm dating form the XVIIIth century. Beauty care, wellness, face care modelling, body building.

Opened the entire year. Capacity: 10 places. Double room and breakfast: 90 € to 120 €.



Châteauroux-les-Alpes - Chambres d'hôtes - La Ferme de Beauté
Crots - Chambres d'hôtes et Restaurant - Auberge de Boscodon
Crots – Chambres d’hôtes et Restaurant – Auberge de Boscodon
Tél.: +33 (0)4 92 43 00 50 – [email protected]

Maison de caractère restaurée, située à deux pas de l’Abbaye de Boscodon en forêt dans un site classé remarquable.

Ouvert de février à la Toussaint. Capacité 14 personnes. Chambres d’étape et chambres d’hôtes. Tarif nuitée + pdj à partir de 24 €/pers. Demi-pension à partir de 43 €/pers. Attention : Tarif nuitée + pdj à partir de 24 € / personne (et non pas 50/60 € par personne comme indiqué par erreur dans le guide hébergement 2015).

Restaurant ouvert midi et soir en saison: plats du jour et spécialités de montagne, petite restauration.



Crots - Chambres d'hôtes et Restaurant - Auberge de Boscodon
Châteauroux-les-Alpes - Chambres d'hôtes - Les Ancolies
Châteauroux-les-Alpes – Chambres d’hôtes – Les Ancolies
Tél.: +33 (0)4 92 43 07 80 – +33 (0)6 76 89 47 65

Located near the Natinal Park des Ecrins, a warm, peaceful guest house, in a pleasant setting with panoramic vue on the mountains peaks.

Opened the entire year by booking. 1 suite for 4 persons and 1 room for 3 persons.
Price for couple with breakfast: 47 € to 57 €.



Châteauroux-les-Alpes - Chambres d'hôtes - Les Ancolies
Châteauroux-les-Alpes - Chambres d'hôtes - Coins du Monde
Châteauroux-les-Alpes – Chambres d’hôtes – Coins du Monde
Tél.: +33 (0)6 20 93 80 17 – www.coinsdumonde.com

Lieu de repos et de détente en famille ou groupes au détour d’un voyage initiatique aux 4 coins du monde qui animent chacune des 4 chambres d’hôtes… Votre hôte vous invite à la découverte de jeux du monde et à la dégustation de mets mitonnés avec les produits du terroir.
Etape Saint Jacques de Compostelle.

Ouvert toute l’année (à partir du 1er juin 2015). Capacité 14 personnes: 4 chambres pour 2 à 4 pers. Tarif chambre double et famille avec petit-déjeuners de 57 € à 93 €.
Table d’hôte toute l’année sur réservation: 18 € / personne (apéritif et boissons inclus)



Châteauroux-les-Alpes - Chambres d'hôtes - Coins du Monde
Châteauroux-les-Alpes - Chambres d'hôtes - Les Peschiers
Châteauroux-les-Alpes – Chambres d’hôtes – Les Peschiers
Tel: +33 (0)4 92 43 10 67 – [email protected]

Dans un petit village aux portes du Parc National des Ecrins, entre lac et montagne, Marie-France et Paul vous accueillent dans leurs 5 chambres d’hôtes situées dans une vieille maison rénovée.

Ouvert toute l’année. Capacité 12 personnes. Tarifs chambre double avec petit-déjeuner 75 €.



Châteauroux-les-Alpes - Chambres d'hôtes - Les Peschiers
Les Orres - Chambres d'hôtes - La Jarbelle des Orres
Les Orres – Chambres d’hôtes – La Jarbelle des Orres
Tél.: +33 (0)4 92 44 11 33 – [email protected]

br>
Completely restaured old farm. Local cuisine. At 3 km the resort Les Orres.

Capacity 18 places. Double room and breakfast: 76 €. Half-board: par person: 53 €.Caution : Double room + breakfast for 2 persons 76 € / night (ans not 76 €/person as wrongly indicated in accomodation guide 2015)



Les Orres - Chambres d'hôtes - La Jarbelle des Orres
Les Orres - Chambres d'hôtes - L'Adret des Orres
Les Orres – Chambres d’hôtes – L’Adret des Orres
Tél.: +33 (0)6 72 76 67 51 – www.ladretdesorres.fr

Dans un hameau de montagne au départ des randonnées (marche, vtt, raquettes en hiver), notre ancienne ferme rénovée propose un accueil chaleureux et convivial. Table d’hôtes avec une cuisine des terroirs d’ici et d’ailleurs.

Chambres et table d’hôtes (réservation) ouvertes toute l’année. Capacité 10 pers: 3 ch double et 4 ch single. Tarif ch double avec petit-déjeuners: 50 € à 160 €. Forfait Tribu (8 à 10 pers.): 1/2 pension 315 €/nuit (minimum 2 nuits).
Table d’hôte: 17 €/personne (boissons incluses).



Les Orres - Chambres d'hôtes - L'Adret des Orres
Prunières - Chambres d'hôtes - L'Air du Temps
Prunières – Chambres d’hôtes – L’Air du Temps
Tél.: +33 (0)6 74 09 17 82
Mail: [email protected]

Maison d’hôtes chaleureuse exposée plein sud dans un site exceptionnel en bordure du lac de Serre-Ponçon et vue sur la Baie St Michel. Proche des activités nautiques. Nature, simplicité et hospitalité.

Ouvert toute l’année. Capacité 11 personnes (3 ch de 1 à 4 pers). Tarifs chambre double 70 €.Attention : Tarif chambre double + pdj pour 2 personnes 70 € / nuit (et non pas 70 €/personne comme indiqué par erreur dans le guide hébergement 2015)



Prunières - Chambres d'hôtes - L'Air du Temps
Puy Saint Eusèbe - Chambres d'hôtes - Le Clos Tartuc
Puy Saint Eusèbe – Chambres d’hôtes – Le Clos Tartuc
Tél: +33 (0)4 92 43 30 36 – +33 (0)6 22 95 91 84
http://clostartuc.pagesperso-orange.fr

A 6km d’Embrun, 3 chambres d’hôtes chaleureuses avec une salle de bain commune. Un accueil chaleureux dans une maison montagnarde avec une vue exceptionnelle sur le lac et les montagnes. Aux portes du Parc National des Ecrins et au départ de balades (GR50) et de randonnées.

Ouvert toute l’année. Capacité totale 6 personnes.
Tarif chambres double avec petit-déjeuners à partir de 50 €/nuit. La 5ème nuit est offerte ! Attention : Tarif chambre double + pdj pour 2 personnes 50 € / nuit (et non pas 50 €/personne comme indiqué par erreur dans le guide hébergement 2015)

Table d’hôtes tout compris: 18 €/personne
Pique-nique: 10 €/personne



Puy Saint Eusèbe - Chambres d'hôtes - Le Clos Tartuc
Réallon - Maison d'hôtes de Fontbriand
Réallon – Maison d’hôtes de Fontbriand
Tél.: +33 (0)4 92 49 05 91
www.gite-embrun-reallon.com

The scent of the nature, the peace assured. We greet you in a convivial and warm Fontbriand guest house with charming guest rooms, former farm of character.

Opened the entire year. Capacity: 6 persons: 3 rooms 2 pers. Double bedroom and breakfast from 85 €.



Réallon - Maison d'hôtes de Fontbriand
Savines-le-lac - Bed & Breakfast - La Tulipe
Savines-le-lac – Bed & Breakfast – La Tulipe
Tél: +33 (0)4 92 48 55 49 – [email protected]

3 chambres d’hôteS (dont une chambre ‘Tulipe Luxe’), les pieds dans l’eau à 500 m des plages du lac de Serre-Ponçon. Un accueil très chaleureux, un petit déjeuner hollandais servi en extérieur ‘royal et surprenant’, le confort, le charme et la détente ! Des propriétaires à votre écoute.

Ouvert en saison d’été. Capacité totale 8 personnes.
Tarifs chambres double avec petit-déjeuners à partir de 65 € à 75 €.



Savines-le-lac - Bed & Breakfast - La Tulipe
Page(s) :  1 


<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

visites patrimoine avec une guide conférencière

Groupes et Scolaires

 

Pays sud

Pays Serre-Ponçon-Ubaye-Durance
« Montagne de Lumières »

Tourisme et handicap

Label Tourisme & Handicap


<!–

–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

Quick search

jQuery(document).ready(function ($) {
$(‘#ac_keywords’).on(‘focus’, function () {
if (this.value == ‘Search :’) {
this.value =  »;
}
});
});

–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

Guide « Sortir »

launchMini(« 875/4049/17723 », « true », « 0x002e6e », « 204 », « 108 », « fr »);

–>
<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>

Opening times

September to October & April to June

Monday to Saturday

9.00 to 12.00 and 14.00 to 18.00

Closed on thursdays PM
outside French holidays’ periods.

 

November to March

Monday to Saturday
9.00 to 12.00 and 14.00 to 18.00

Closed on thursdays
outside French holidays’ periods.

 

July and August (summer)

Monday to Saturday
9.00 – 19.00
Sundays
10h – 12h30 & 16h – 19h




<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–

Most popular

link_module_css(‘template/modules/defilante-selection/defilante-selection.css’);

<a href="http://www.tourisme-embrun.com/en/groups-scholar-tours-xml-258_273-833.html" data-description="

Groups & Scholar tours
Guided tours all year round. Minimum 20 persons. English, German, Italian and Spanish.

Tél : +33 (0)4 92 43 72 71
E-mail : [email protected]

« >
Groups & Scholar tours

<a href="http://www.tourisme-embrun.com/en/the-label-pays-et-ville-dart-et-dhistoire-xml-258_273-3266.html" data-description="

The label Pays et Ville d’Art et d’Histoire
In June 2011, the Pays Serre-Ponçon Ubaye Durance received the label Pays d’Art et d’Histoire given by the Culture and Communication Ministry.

« >
The label Pays et Ville d’Art et d’Histoire

<a href="http://www.tourisme-embrun.com/en/kit-for-blind-and-partially-sighted-persons-xml-258_273-943.html" data-description="

KIT for blind and partially sighted persons
This KIT is composed of a text in big print, a Braille and an audio version.

« >
KIT for blind and partially sighted persons

jQuery(document).ready(function($)
{

var $defilanteSelectionBulle = $(‘#defilante-selection-bulle’);
var $defilanteSelectionLink = $(‘#defilante-selection a’);

$defilanteSelectionBulle.css({‘visibility’:’visible’});
$defilanteSelectionBulle.hide();

$defilanteSelectionLink.on(‘mouseenter’,function()
{
$defilanteSelectionBulle.html($(this).data(‘description’));
$defilanteSelectionBulle.stop(true,true).fadeIn();
})
.on(‘mouseleave’,function()
{
$defilanteSelectionBulle.hide();
})
.on(‘mousemove’,function(e)
{
var relX = e.pageX+20;
var relY = e.pageY+20;

if((relX+$defilanteSelectionBulle.width()) > $(window).width())
{
relX = e.pageX – $defilanteSelectionBulle.width() -20 ;
}

$defilanteSelectionBulle.css({‘top’:relY,’left’:relX});
});
});

<!– <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>> //–>
<!–



Office de Tourisme – Place du Général DOSSE – 05200 EMBRUN | Tél. +33 (0)4 92 43 72 72 | | Terms and conditions | Sitemap | | |© Copyright Photo Oliver 0965190598

Ce site est réalisé par CAP communication




gi_Cappture_Domain_Id = ‘ezBDOUE4NzU3LUI1QTctNDZCRi04OEFFLTcwNzAyOEUwMjlERH1fe0M5RTdFOTZELTc3MDItNDJBQy1CMkI3LTEzOTcyRThCRjdDOX0=’

var gaJsHost = ((« https: » == document.location.protocol) ? « https://web.archive.org/web/20150318052137/https://ssl. » : « https://web.archive.org/web/20150318052137/http://www. »);
document.write(unescape(« %3Cscript src=' » + gaJsHost + « google-analytics.com/ga.js’ type=’text/javascript’%3E%3C/script%3E »));

try {
var pageTracker = _gat._getTracker(« UA-5635448-13 »);
pageTracker._trackPageview();
} catch(err) {}

var gaJsHost = ((« https: » == document.location.protocol) ? « https://web.archive.org/web/20150318052137/https://ssl. » : « https://web.archive.org/web/20150318052137/http://www. »);
document.write(unescape(« %3Cscript src=' » + gaJsHost + « google-analytics.com/ga.js’ type=’text/javascript’%3E%3C/script%3E »));

try {
var pageTracker = _gat._getTracker(« UA-110059-2 »);
pageTracker._trackPageview();
} catch(err) {}


Retour en haut