first commit

This commit is contained in:
Jack Halford 2018-10-21 20:07:38 +02:00
commit 76a04cf300
99 changed files with 2461 additions and 0 deletions

61
404.html Normal file
View file

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Visite de La Ferme du Bos-Luguet à Eymoutiers Haute-Vienne Limousin" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="css/index.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="./index.html"><img src="ressources/bg-header.jpg" alt="#"></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<ul>
<li class="active"><a href="index.html" accesskey="1" title="">Accueil</a></li>
<li><a href="galerie/laferme.html" accesskey="2" title="">Galerie</a></li>
<li><a href="partenaire/produits.html" accesskey="3" title="">Partenaires</a></li>
<li><a href="visite/trouvez-nous.html" accesskey="4" title="">Votre Visite</a></li>
<li><a href="reservation.html" accesskey="5" title="">Contact</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article style="margin-top: 30px;">
<section>
<div class="content"> <!-- les atributs class et id servent pour le css -->
<h2 class="title"><a href="#" style="padding-bottom: 0px;">ERROR 404 ...</a></h2>
</div>
</section>
<section>
<div id="page" class="content">
<p>
... Oups ceci est une page d'erreur reprenez votre navigation !
Merci d'avance.
</p>
</div>
</section>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

405
css/galerie.css Normal file
View file

@ -0,0 +1,405 @@
/** PAGE */
html, body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
.header img{
width : 100%;
}
body {
margin: 0px;
padding: 0px;
background:#EEE8AA ;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
font-size: 1.0rem;
color: #ffffff;
}
h1, h2, h3 {
margin: 0;
padding: 0;
}
h1
{
font-weight: 400;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
font-size: 2.50rem;
}
p, ol, ul {
margin-top: 0px;
}
p {
line-height: 180%;
}
strong {
}
a {
color: #1492C4;
}
a:hover {
text-decoration: none;
}
a img {
border: none;
}
hr {
display: none;
}
#wrapper {
position: relative;
width: 100%;
min-height: 40px;
margin: -6px auto;
}
.container {
width: 1000px;
margin: 0px auto;
}
#page {
overflow: hidden;
}
article{
height : 100%;
position: relative;
margin: 75px 0 55px 175px;
}
section {
height : 94%;
width:70%;
text-align : center ;
}
/** HEADER */
#header-wrapper
{
overflow: hidden;
height: 40px;
width: 100%;
margin-bottom: 20px;
background-color: #391505;
}
#header {
overflow: hidden;
width: 651px;
}
/** MENU */
#menu {
float: right;
height:50px;
}
#menu ul {
margin: 0px;
padding: 0px;
list-style: none;
line-height: normal;
}
#menu li {
float: left;
margin-right: 1px;
}
#menu a {
display: block;
height: 40px;
padding: 0px 30px;
line-height: 40px;
text-decoration: none;
font-size : 1rem;
color: #FFFFFF;
}
#menu a:hover {
text-decoration: none;
background: rgba(0,0,0,0.70);
z-index:2;
}
#menu .active
{
background: rgba(0,0,0,0.70);
font-weight: bold;
}
/* Footer */
#footer {
width : 100%;
overflow: hidden;
padding: 20px 0px;
background: #391505;
padding-top : 8px ;
padding-bottom:0;
}
#footer p {
text-align: center;
font-size: 1.0rem;
}
#footer img {
height : 90px;
margin-left : 20px;
}
#footer figure {
width : 100%;
text-align : center;
height : 100%;
margin-top: 0px;
margin-bottom : 5px
}
#menu a:hover , #menu a:focus{
text-decoration: none;
background: rgba(0,0,0,0.70);
transition-duration: 0.7s;
}
/*MENU FIXE*/
#fixe{
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
width : 18%;
height: 100%;
background: #391505;
position : absolute;
float : left;
width : 215px;
height: 300px;
left:2%;
top: 270%;
border-radius:15px;
z-index : 2;
}
#fixe ul {
margin: 0px;
padding: 0px;
list-style: none;
line-height: normal;
}
#fixe li {
width : 100%;
height : 75px;
text-align : center;
margin: 0px auto 0px auto;
font-size :0.8rem;
}
#menu #fixe a {
height: 75px;
line-height: 75px;
}
/** CONTENT */
.content {
padding: 40px;
background: rgb(102, 51, 0);
width :85%;
height:15%;
margin: 0 auto 30px auto;
border-radius:15px;
}
figure {
margin-left: 2%;
width: 105%;
}
.content h2 a
{
display: block;
padding: 0px 0px 20px 0px;
text-decoration: none;
color: #FFFFFF;
}
article#photo{
margin-left:17rem;
}
#diaporama{
width:100%;
height:75%;
margin-left:2.5%;
}
#diaporama img{
float:left;
width:8%;
margin-top:2%;
}
#diaporama .centre{
float:left;
width:200px;
}
#diaporama div img + .grande{
display:none;
}
#diaporama div img:hover + .grande{
display:inline;
position:absolute;
width: 81%;
left:8.5%;
top:9%;
z-index:2;
}
#legend{
width:42%;
text-align:center;
padding-left:25%;
padding-top:25%;
}
#legend2{
width:42%;
text-align:center;
padding-left:25%;
padding-top:25%;
}
#legend3{
width:42%;
text-align:center;
padding-left:25%;
padding-top:25%;
}
.photo
{
text-align:center;
}
#diaporama2{
width:100%;
height:75%;
margin-left:2.5%;
}
#diaporama2 img{
float:left;
width:8%;
margin-top:2%;
}
#diaporama2 .centre{
float:left;
width:200px;
}
#diaporama2 div img + .grande{
display:none;
}
#diaporama2 div img:hover + .grande{
display:inline;
position:absolute;
width: 81%;
left:8.5%;
top:9%;
z-index:2;
}
#diaporama3{
width:100%;
height:75%;
margin-left:2.5%;
}
#diaporama3 img{
float:left;
width:8%;
margin-top:2%;
}
#diaporama3 .centre{
float:left;
width:200px;
}
#diaporama3 div img + .grande{
display:none;
}
#diaporama3 div img:hover + .grande{
display:inline;
position:absolute;
width: 81%;
left:8.5%;
top:9%;
z-index:2;
}
.boite{
background: rgb(57,21,5);
width :75%;
height: 100%;
margin-left:22%;
border-radius: 15px 15px 15px 15px;
}
.haut{
height: 50px;
width: 100%;
left: 50%;
margin-left: -250px;
margin-top: -250px;
position: absolute;
top: 50%;
}
.haut img {
float: left;
height: 50px;
width: 75px;
}
.haut div img:hover + .grande {
display: inline;
height: 400px;
left: 50%;
margin-left: -200px;
margin-top: -200px;
position: absolute;
top: 50%;
width: 400px;
}
.haut img + .grande {
display: none;
}
#picture_align_fen{
padding-left:17.5%;
}
#picture_align_veau{
padding-left:27.5%;
}
#picture_align_vel{
padding-left:7%;
}

183
css/index.css Normal file
View file

@ -0,0 +1,183 @@
/** PAGE */
html, body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
body {
margin: 0px;
padding: 0px;
background:#EEE8AA ;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
font-size: 1rem;
color: #ffffff;
}
h1, h2, h3 {
margin: 0;
padding: 0;
}
h2
{
font-weight: 400;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
font-size: 2.50rem;
}
p, ol, ul {
margin-top: 0px;
}
p {
line-height: 180%;
}
a {
color: #1492C4;
}
a:hover {
text-decoration: none;
}
a img {
border: none;
}
#wrapper {
position: relative;
width: 100%;
min-height: 40px;
margin: -6px auto;
overflow: hidden;
}
.container {
width: 1000px;
margin: 0px auto;
}
/** HEADER */
.header img{
width : 100%;
}
#header-wrapper
{
overflow: hidden;
height: 40px;
width: 100%;
margin-bottom: 20px;
background-color: #391505;
}
#header {
overflow: hidden;
width: 651px;
}
/** MENU */
#menu {
float: right;
height:50px;
}
#menu ul {
margin: 0px;
padding: 0px;
list-style: none;
line-height: normal;
}
#menu li {
float: left;
margin-right: 1px;
}
#menu a {
display: block;
height: 40px;
padding: 0px 30px;
line-height: 40px;
text-decoration: none;
font-size : 1rem;
color: #FFFFFF;
}
#menu a:hover , #menu a:focus{
text-decoration: none;
background: rgba(0,0,0,0.70);
transition-duration: 0.7s;
}
#menu .active
{
background: rgba(0,0,0,0.70);
font-weight: bold;
}
#page {
overflow: hidden;
}
article{
position: relative;
margin: 75px 0 55px 175px;
}
/** CONTENT */
.content {
padding: 40px;
background: rgb(57, 21, 5);
width :70%;
margin: 0 auto 30px auto;
border-radius:15px;
}
.content h2 a
{
display: block;
padding: 0px 0px 20px 0px;
text-decoration: none;
color: #FFFFFF;
}
/* Footer */
#footer {
width : 100%;
overflow: hidden;
margin: 20px auto 0px auto;
padding: 20px 0px;
background: #391505;
}
#footer p {
text-align: center;
font-size: 1rem;
}
#footer img {
height : 90px;
margin-left : 20px;
}
#footer figure {
width : 100%;
text-align : center;
height : 100%;
margin-top: 0px;
margin-bottom : 5px
}

319
css/partenaires.css Normal file
View file

@ -0,0 +1,319 @@
/** PAGE */
html, body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
body {
padding: 0px;
background:#EEE8AA ;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
font-size: 1.0rem;
color: #ffffff;
}
h1, h2, h3 {
margin: 0;
padding: 0;
}
h2
{
font-weight: 400;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
font-size: 2.50rem;
}
p, ol, ul {
margin-top: 0px;
}
p {
line-height: 180%;
}
a {
color: #1492C4;
}
a:hover {
text-decoration: none;
}
a img {
border: none;
}
hr {
display: none;
}
#wrapper {
position: relative;
width: 100%;
min-height: 40px;
margin: -6px auto;
}
.container {
width: 1000px;
margin: 0px auto;
}
/** HEADER */
.header img{
width : 100%;
}
#header-wrapper
{
overflow: hidden;
height: 40px;
width: 100%;
margin-bottom: 20px;
background-color: #391505;
}
#header {
overflow: hidden;
width: 651px;
}
#logo {
float: left;
width: 300px;
height: 100px;
}
#logo h1, #logo p {
margin: 0px;
line-height: normal;
}
#logo h1 a {
padding-left: 20px;
text-decoration: none;
font-size: 1.50rem;
font-weight: 400;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
color: #FFFFFF;
}
/** MENU */
#menu {
float: right;
height:50px;
}
#menu ul {
margin: 0px;
padding: 0px;
list-style: none;
line-height: normal;
}
#menu li {
float: left;
margin-right: 1px;
}
#menu a {
display: block;
height: 40px;
padding: 0px 30px;
line-height: 40px;
text-decoration: none;
font-size : 1.0rem;
color: #FFFFFF;
}
#menu a:hover , #menu a:focus{
text-decoration: none;
background: rgba(0,0,0,0.70);
transition-duration: 0.7s;
}
#menu .active
{
background: rgba(0,0,0,0.70);
font-weight: bold;
}
#page {
overflow: hidden;
}
article{
position: relative;
margin: 75px 0 55px 175px;
}
/** CONTENT */
#picture {
float:left;
overflow: auto;
margin-right:2%;
}
.content {
padding: 40px;
background: #391505;
width :70%;
height: 90%;
margin: 0 auto 30px auto;
border-radius:15px;
}
.content h2 a
{
display: block;
padding: 0px 0px 20px 0px;
text-decoration: none;
color: #FFFFFF;
}
.content a{
height : 110px;
position : absolute;
}
.content img{
height : 100%;
}
#AB{
width: 72%;
}
article{
height : 100%;
z-index: 1;
}
section{
height : 75%
}
#part1{
height: 23%;
}
#part1 figcaption{
float: right;
left: 26%;
position: absolute;
width: 59%;
text-align: justify;
}
#part2{
height : 20%
}
#part2 figcaption{
text-align: right;
float :left;
width: 80%;
margin-right : 3%;
}
#part3{
height : 20%
}
#part3 figcaption{
float : right;
width : 88%;
}
iframe{
width : 70%;
}
#label p {
text-align : justify;
}
#rad {
margin-left: 52%;
margin-top: -1%;
}
#blason{
height: 135%;
position: absolute;
top: -230%;
}
#blas{
width : 75%;
margin-left: 20%;
}
#article{
height : 130%
}
/* Footer */
#footer {
width : 100%;
overflow: hidden;
margin: 20px auto 0px auto;
padding: 20px 0px;
background: #391505;
}
#footer p {
text-align: center;
font-size: 1.0rem;
}
#footer img {
height : 90px;
margin-left : 20px;
}
#footer figure {
width : 100%;
text-align : center;
height : 100%;
margin-top: 0px;
margin-bottom : 5px
}
/*menu lateral*/
#fixe{
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
width : 18%;
height: 100%;
background: #391505;
position : absolute;
float : left;
width : 215px;
height: 300px;
left:50px;
top: 270%;
border-radius:15px;
z-index : 2;
}
#fixe ul {
margin: 0px;
padding: 0px;
list-style: none;
line-height: normal;
z-index: 2;
}
#fixe li {
width : 100%;
height : 75px;
text-align : center;
margin: 0px auto 0px auto;
font-size :0.8rem;
}
#menu #fixe a {
height: 75px;
line-height: 75px;
}

243
css/reservation.css Normal file
View file

@ -0,0 +1,243 @@
/** PAGE */
html, body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
body {
padding: 0px;
background:#EEE8AA ;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
font-size: 1.0rem;
color: #ffffff;
}
h1, h2, h3 {
margin: 0;
padding: 0;
}
h2
{
font-weight: 400;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
font-size: 2.50rem;
}
p, ol, ul {
margin-top: 0px;
}
p {
line-height: 180%;
}
a {
color: #1492C4;
}
a:hover {
text-decoration: none;
}
a img {
border: none;
}
hr {
display: none;
}
#wrapper {
position: relative;
width: 100%;
min-height: 40px;
margin: -6px auto;
overflow: hidden;
}
.container {
width: 1000px;
margin: 0px auto;
}
/** HEADER */
.header img{
width : 100%;
}
#header-wrapper
{
overflow: hidden;
height: 40px;
width: 100%;
margin-bottom: 20px;
background-color: #391505;
}
#header {
overflow: hidden;
width: 651px;
}
#logo {
float: left;
width: 300px;
height: 100px;
}
#logo h1, #logo p {
margin: 0px;
line-height: normal;
}
#logo h1 a {
padding-left: 20px;
text-decoration: none;
font-size: 1.50rem;
font-weight: 400;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
color: #FFFFFF;
}
/** MENU */
#menu {
float: right;
height:50px;
}
#menu ul {
margin: 0px;
padding: 0px;
list-style: none;
line-height: normal;
}
#menu li {
float: left;
margin-right: 1px;
}
#menu a {
display: block;
height: 40px;
padding: 0px 30px;
line-height: 40px;
text-decoration: none;
font-size : 1.0rem;
color: #FFFFFF;
}
#menu a:hover , #menu a:focus{
text-decoration: none;
background: rgba(0,0,0,0.70);
transition-duration: 0.7s;
}
#menu .active
{
background: rgba(0,0,0,0.70);
font-weight: bold;
}
#page {
overflow: hidden;
}
article{
position: relative;
margin: 75px 0 55px 175px;
}
/** CONTENT */
.content {
padding: 40px;
background: #391505;
width :70%;
border-radius:15px;
}
.content h2 a
{
display: block;
padding: 0px 0px 20px 0px;
text-decoration: none;
color: #FFFFFF;
}
form{
width: 75%;
margin : auto;
}
section{
width: 75%;
margin : auto;
}
/* Footer */
#footer {
width : 100%;
overflow: hidden;
margin: 20px auto 0px auto;
padding: 20px 0px;
background: #391505;
}
#footer p {
text-align: center;
font-size: 1.0rem;
}
#footer img {
height : 90px;
margin-left : 20px;
}
#footer figure {
width : 100%;
text-align : center;
height : 100%;
margin-top: 0px;
margin-bottom : 5px
}
/*menu lateral*/
#fixe{
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
width : 18%;
height: 100%;
background: #391505;
position : fixed;
float : left;
width : 215px;
height: 300px;
left:50px;
top:250px;
border-radius:15px;
}
#fixe ul {
margin: 0px;
padding: 0px;
list-style: none;
line-height: normal;
}
#fixe li {
width : 100%;
height : 75px;
text-align : center;
margin: 0px auto 0px auto;
font-size :0.8rem;
}
#menu #fixe a {
height: 75px;
line-height: 75px;
}

297
css/visite.css Normal file
View file

@ -0,0 +1,297 @@
/** PAGE */
html, body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
body {
margin: 0px;
padding: 0px;
background:#EEE8AA ;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
font-size: 1.0rem;
color: #ffffff;
}
h1, h2, h3 {
margin: 0;
padding: 0;
}
h2
{
font-weight: 400;
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
font-size: 2.50rem;
}
p, ol, ul {
margin-top: 0px;
}
#page {
overflow: hidden;
}
article{
position: relative;
margin: 75px 0 55px 175px;
height : 100%;
z-index: 1;
}
a {
color: #1492C4;
-moz-transition-duration : .5s;
}
a:hover {
text-decoration: none;
-moz-transition-duration : 0.5s;
}
a img {
border: none;
}
hr {
display: none;
}
#wrapper {
position: relative;
width: 100%;
min-height: 40px;
margin: -6px auto;
}
.container {
width: 1000px;
margin: 0px auto;
}
/** HEADER */
.header img{
width : 100%;
}
#header-wrapper
{
overflow: hidden;
height: 40px;
width: 100%;
margin-bottom: 20px;
background-color: #391505;
}
#header {
overflow: hidden;
width: 651px;
}
/** MENU */
#menu {
float: right;
height:50px;
}
#menu ul {
margin: 0px;
padding: 0px;
list-style: none;
line-height: normal;
}
#menu li {
float: left;
margin-right: 1px;
}
#menu a {
display: block;
height: 40px;
padding: 0px 30px;
line-height: 40px;
text-decoration: none;
font-size : 1.0rem;
color: #FFFFFF;
}
#menu a:hover , #menu a:focus{
text-decoration: none;
background: rgba(0,0,0,0.70);
transition-duration: 0.7s;
}
#menu .active
{
background: rgba(0,0,0,0.70);
font-weight: bold;
}
/** CONTENT */
/**padding: 6% 3% 7% 3%;*/
.content {
padding: 3% 3% 9% 3%;
background: #391505;
width :70%;
height : 70%;
margin: 0 auto 30px auto;
border-radius:15px;
}
#special{
min-height : 100%
}
#special p {
text-align : justify;
}
.content h2 a
{
display: block;
padding: 0px 0px 20px 0px;
text-decoration: none;
color: #FFFFFF;
}
.content a{
height : 90px;
position : absolute;
}
.content img{
height : 100%;
}
section{
height : 100%
}
#div{
position : absolute;
width : 19%;
left: 67%;
top: 5%;
}
#div p {
text-align : justify;
}
iframe{
width : 70%;
height:80%;
border:none;
}
#twitter{
top: 10%;
left: 72%;
}
#facebook{
top: 35%;
left: 72%;
}
#forsquare{
top: 60%;
left: 72%;
}
#group{
position:absolute;
height:33%;
left: 59%;
top: 51%;
}
p.coordonnees {
line-height: 180%;
width:22%;
}
p.telephonemail{
left: 44%;
position: absolute;
top: 6%;
}
p.direction{
margin-right: 31%;
text-align: justify;
}
/* Footer */
#footer {
width : 100%;
overflow: hidden;
margin: 20px auto 0px auto;
padding: 20px 0px;
background: #391505;
}
#footer p {
text-align: center;
font-size: 1.0rem;
}
#footer img {
height : 90px;
margin-left : 20px;
}
#footer figure {
width : 100%;
text-align : center;
height : 100%;
margin-top: 0px;
margin-bottom : 5px
}
/*menu lateral*/
#fixe{
font-family:Trebuchet ms,Lucida Sans Unicode,Comic Sans ms,sans-serif;
width : 18%;
height: 100%;
background: #391505;
position : absolute;
float : left;
width : 215px;
height: 920%;
left:50px;
top: 270%;
border-radius:15px;
z-index : 2;
}
#fixe ul {
margin: 0px;
padding: 0px;
list-style: none;
line-height: normal;
z-index: 2;
}
#fixe li {
width : 100%;
height : 75px;
text-align : center;
margin: 0px auto 0px auto;
font-size :0.8rem;
}
#menu #fixe a {
height: 75px;
line-height: 75px;
}

135
galerie/animaux.html Normal file
View file

@ -0,0 +1,135 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../../css/galerie.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="../index.html"><img src="../../ressources/bg-header.jpg" alt="#"/></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<div id="banniere">
<ul>
<li><a href="../index.html" accesskey="1" title="">Accueil</a></li>
<li class="active"><a href="laferme.html" accesskey="3" title="">Galerie</a></li>
<li><a href="../partenaire/produits.html" accesskey="4" title="">Partenaires</a></li>
<li><a href="../visite/trouvez-nous.html" accesskey="2" title="">Votre Visite</a></li>
<li><a href="../reservation.html" accesskey="6" title="">Contact</a></li>
</ul>
</div>
<ul id="fixe">
<li style="margin-top: 35px;"><a href="laferme.html" accesskey="7">La Ferme</a></li>
<li><a href="fenaison.html" accesskey="8">La Fenaison</a></li>
<li><a class="active" href="animaux.html" accesskey="9">Animaux</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article class="boite">
<div id="diaporama">
<div>
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache1.jpg" alt="photo"/><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache1.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache2.jpg" alt="photo" /><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache2.jpg" class="grande" alt="photo" />
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache3.jpg" alt="photo"/><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache3.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache4.jpg" alt="photo"/><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache4.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache5.jpg" alt="photo"/><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache5.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache6.jpg" alt="photo"/><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache6.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache7.jpg" alt="photo"/><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache7.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache8.jpg" alt="photo"/><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache8.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache9.jpg" alt="photo"/><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache9.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache10.jpg" alt="photo"/><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache10.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache11.jpg" alt="photo"/><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache11.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache12.jpg" alt="photo"/><img src="../../ressources/Galerie/3Animaux/1Vaches%20et%20taureaux/vache12.jpg" class="grande" alt="photo"/>
</div>
<div id="legend">
<h1 class="legend">Les Limousines au pré</h1><br/>
<p class="legend">
De Avril à Novembre, elles broutent de l'herbe et en hiver elles mangent du foin.
</p>
</div>
</div>
</article>
<article class="boite">
<div id="diaporama2">
<div class="photo">
<img id="picture_align_veau" src="../../ressources/Galerie/3Animaux/2Veaux%20de%20lait/veau1.jpg" alt="veau"/>
<img src="../../ressources/Galerie/3Animaux/2Veaux%20de%20lait/veau1.jpg" class="grande" alt="veau"/>
<img src="../../ressources/Galerie/3Animaux/2Veaux%20de%20lait/veau2.jpg" alt="veau"/>
<img src="../../ressources/Galerie/3Animaux/2Veaux%20de%20lait/veau2.jpg" class="grande" alt="veau"/>
<img src="../../ressources/Galerie/3Animaux/2Veaux%20de%20lait/veau3.jpg" alt="veau"/>
<img src="../../ressources/Galerie/3Animaux/2Veaux%20de%20lait/veau3.jpg" alt="veau" class="grande"/>
<img src="../../ressources/Galerie/3Animaux/2Veaux%20de%20lait/veau4.jpg" alt="veau"/>
<img src="../../ressources/Galerie/3Animaux/2Veaux%20de%20lait/veau4.jpg" alt="veau" class="grande"/>
<img src="../../ressources/Galerie/3Animaux/2Veaux%20de%20lait/veau5.jpg" alt="veau"/>
<img src="../../ressources/Galerie/3Animaux/2Veaux%20de%20lait/veau5.jpg" alt="veau" class="grande"/>
</div>
<div id="legend2">
<h1 class="legend">Les veaux de lait</h1><br/>
<p class="legend">
Ils ne boivent que du lait et sont toujours a l'étable.
</p>
</div>
</div>
</article>
<article class="boite">
<div id="diaporama3">
<div class="photo">
<img id="picture_align_vel" src="../../ressources/Galerie/3Animaux/3velage/vel1.jpg" alt="velage"/>
<img src="../../ressources/Galerie/3Animaux/3Velage/vel1.jpg" alt="velage" class="grande" />
<img src="../../ressources/Galerie/3Animaux/3velage/vel2.jpg" alt="velage"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel2.jpg" alt="velage" class="grande"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel3.jpg" alt="velage"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel3.jpg" alt="velage" class="grande"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel4.jpg" alt="velage"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel4.jpg" alt="velage" class="grande"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel5.jpg" alt="velage"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel5.jpg" alt="velage" class="grande"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel6.jpg" alt="velage"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel6.jpg" alt="velage" class="grande"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel7.jpg" alt="velage"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel7.jpg" alt="velage" class="grande"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel8.jpg" alt="velage"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel8.jpg" alt="velage" class="grande"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel9.jpg" alt="velage"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel9.jpg" alt="velage" class="grande"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel10.jpg" alt="velage"/>
<img src="../../ressources/Galerie/3Animaux/3velage/vel10.jpg" alt="velage" class="grande"/>
</div>
<div id="legend3">
<h1 class="legend">Vêlage</h1><br/>
<p class="legend">
Les veaux naissent à l'intérieur ou à l'extérieur, et sont dorlottés par leur mère jusqu'à la première têtée.
</p>
</div>
</div>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

83
galerie/fenaison.html Normal file
View file

@ -0,0 +1,83 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../../css/galerie.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="../index.html"><img src="../../ressources/bg-header.jpg" alt="#"/></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<div id="banniere">
<ul>
<li><a href="../index.html" accesskey="1" title="">Accueil</a></li>
<li class="active"><a href="laferme.html" accesskey="3" title="">Galerie</a></li>
<li><a href="../partenaire/produits.html" accesskey="4" title="">Partenaires</a></li>
<li><a href="../visite/trouvez-nous.html" accesskey="2" title="">Votre Visite</a></li>
<li><a href="../reservation.html" accesskey="6" title="">Contact</a></li>
</ul>
</div>
<ul id="fixe">
<li style="margin-top: 35px;"><a href="laferme.html" accesskey="7">La Ferme</a></li>
<li><a href="fenaison.html" class="active" accesskey="8">La Fenaison</a></li>
<li><a href="animaux.html" accesskey="9">Animaux</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article class="boite">
<div id="diaporama">
<div>
<img id="picture_align_fen" src="../../ressources/Galerie/2Fenaison/fen1.jpg" alt="fenaison"/>
<img src="../../ressources/Galerie/2Fenaison/fen1.jpg" alt="fenaison" class="grande"/>
<img src="../../ressources/Galerie/2Fenaison/fen2.jpg" alt="fenaison"/>
<img src="../../ressources/Galerie/2Fenaison/fen2.jpg" alt="fenaison" class="grande"/>
<img src="../../ressources/Galerie/2Fenaison/fen3.jpg" alt="fenaison"/>
<img src="../../ressources/Galerie/2Fenaison/fen3.jpg" alt="fenaison" class="grande"/>
<img src="../../ressources/Galerie/2Fenaison/fen4.jpg" alt="fenaison"/>
<img src="../../ressources/Galerie/2Fenaison/fen4.jpg" alt="fenaison" class="grande"/>
<img src="../../ressources/Galerie/2Fenaison/fen5.jpg" alt="fenaison"/>
<img src="../../ressources/Galerie/2Fenaison/fen5.jpg" alt="fenaison" class="grande"/>
<img src="../../ressources/Galerie/2Fenaison/fen6.jpg" alt="fenaison"/>
<img src="../../ressources/Galerie/2Fenaison/fen6.jpg" alt="fenaison" class="grande"/>
<img src="../../ressources/Galerie/2Fenaison/fen7.jpg" alt="fenaison"/>
<img src="../../ressources/Galerie/2Fenaison/fen8.jpg" alt="fenaison" class="grande"/>
</div>
<div id="legend">
<h1 class="legend">La fenaison</h1><br/>
<p class="legend">
On coupe, on fait sécher et on fait des bottes ; quand ce n'est pas assez sec on met du plastique.
</p>
</div>
</div>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

107
galerie/laferme.html Normal file
View file

@ -0,0 +1,107 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../../css/galerie.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="../index.html"><img src="../../ressources/bg-header.jpg" alt="#"/></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<div id="banniere">
<ul>
<li><a href="../index.html" accesskey="1" title="">Accueil</a></li>
<li class="active"><a href="laferme.html" accesskey="3" title="">Galerie</a></li>
<li><a href="../partenaire/produits.html" accesskey="4" title="">Partenaires</a></li>
<li><a href="../visite/trouvez-nous.html" accesskey="2" title="">Votre Visite</a></li>
<li><a href="../reservation.html" accesskey="6" title="">Contact</a></li>
</ul>
</div>
<ul id="fixe">
<li style="margin-top: 35px;"><a class="active" href="laferme.html" accesskey="7">La Ferme</a></li>
<li><a href="fenaison.html" accesskey="8">La Fenaison</a></li>
<li><a href="animaux.html" accesskey="9">Animaux</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article class="boite">
<div id="diaporama">
<div>
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme1.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Ferme/ferme1.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme2.jpg" alt="photo" /><img src="../../ressources/Galerie/LaFerme/Ferme/ferme2.jpg" class="grande" alt="photo" />
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme3.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Ferme/ferme3.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme4.png" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Ferme/ferme4.png" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme5.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Ferme/ferme5.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme6.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Ferme/ferme6.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme7.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Ferme/ferme7.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme8.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Ferme/ferme8.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme9.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Ferme/ferme9.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme10.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Ferme/ferme10.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme11.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Ferme/ferme11.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Ferme/ferme12.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Ferme/ferme12.jpg" class="grande" alt="photo"/>
</div>
<div id="legend">
<h1 class="legend">La ferme</h1><br/>
<p class="legend">
Nous vous accueillons dans notre cadre quotidien.
</p>
</div>
</div>
</article>
<article class="boite">
<div id="diaporama2">
<div>
<img src="../../ressources/Galerie/LaFerme/Paysages/pays1.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Paysages/pays1.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Paysages/pays2.jpg" alt="photo" /><img src="../../ressources/Galerie/LaFerme/Paysages/pays2.jpg" class="grande" alt="photo" />
<img src="../../ressources/Galerie/LaFerme/Paysages/pays3.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Paysages/pays3.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Paysages/pays4.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Paysages/pays4.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Paysages/pays5.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Paysages/pays5.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Paysages/pays6.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Paysages/pays6.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Paysages/pays7.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Paysages/pays7.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Paysages/pays8.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Paysages/pays8.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Paysages/pays9.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Paysages/pays9.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Paysages/pays10.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Paysages/pays10.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Paysages/pays11.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Paysages/pays11.jpg" class="grande" alt="photo"/>
<img src="../../ressources/Galerie/LaFerme/Paysages/pays12.jpg" alt="photo"/><img src="../../ressources/Galerie/LaFerme/Paysages/pays12.jpg" class="grande" alt="photo"/>
</div>
<div id="legend2">
<h1 class="legend">Le Bos-Luguet</h1><br/>
<p class="legend">
Nos paysages de moyenne montagne façonnés par l'élevage.
</p>
</div>
</div>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

View file

@ -0,0 +1 @@
google-site-verification: google7eae0694d9278d7d.html

69
index.html Normal file
View file

@ -0,0 +1,69 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../css/index.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="./index.html"><img src="../ressources/bg-header.jpg" alt="#"></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<ul>
<li class="active"><a href="index.html" accesskey="1" title="">Accueil</a></li>
<li><a href="galerie/laferme.html" accesskey="2" title="">Galerie</a></li>
<li><a href="partenaire/produits.html" accesskey="3" title="">Partenaires</a></li>
<li><a href="visite/trouvez-nous.html" accesskey="4" title="">Votre Visite</a></li>
<li><a href="reservation.html" accesskey="5" title="">Contact</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article style="margin-top: 30px;">
<section>
<div class="content"> <!-- les atributs class et id servent pour le css -->
<h2 class="title"><a href="#" style="padding-bottom: 0px;">Maryse et Régis vous accueillent !</a></h2>
</div>
</section>
<section>
<div id="page" class="content">
<p><strong>La Ferme du Bos-Luguet</strong>
est située au cœur du Limousin sur les contreforts du Plateau de Millevaches sur un territoire de moyenne montagne, à la fois boisé et herbager, et parcouru d'une myriade de cours d'eau.<br/><br/>
Sur 53 ha de prairies, nous élèvons 45 vaches Limousines et aussi quelques laitières - pour produire des veaux de lait élevés sous la mère, des broutards et des vaches de boucherie.<br/><br/>
Nous vous accueillons tout au long de lannée ; en famille, en voyage organisé ou en sortie scolaire ; sur simple rendez-vous et par tous les temps pour des visites où vous découvrirez notre métier de paysan, le troupeau, parmi des paysages verdoyants, façonnés par lélevage, et changeant à chaque saison.<br/><br/>
Le tarif des visites est de 3 € / personne.<br/><br/>
Retrouvez toutes nos actualités et partagez votre avis sur notre page <a href="https://www.facebook.com/ferme.bosluguet" target="_blank">Facebook </a>et notre compte Twitter <a href="https://twitter.com/FermeBosLuguet" target="_blank">@FermeBosLuguet</a><br/><br/>
</p>
</div>
</section>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

70
partenaire/label_bio.html Normal file
View file

@ -0,0 +1,70 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../../css/partenaires.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="../index.html"><img src="../../ressources/bg-header.jpg" alt="#"></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<div id="banniere">
<ul>
<li><a href="../index.html" accesskey="1" title="">Accueil</a></li>
<li><a href="../galerie/laferme.html" accesskey="3" title="">Galerie</a></li>
<li class="active"><a href="produits.html" accesskey="4" title="">Partenaires</a></li>
<li><a href="../visite/trouvez-nous.html" accesskey="2" title="">Votre Visite</a></li>
<li><a href="../reservation.html" accesskey="6" title="">Contact</a></li>
</ul>
</div>
<ul id="fixe">
<li style="margin-top: 30px;"><a href="produits.html" accesskey="7">Nos produits</a></li>
<li><a class="active" href="label_bio.html" accesskey="8">Nos labels</a></li>
<li><a href="tourisme.html" accesskey="9">Le Tourisme</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article id="article">
<section id="page" class="content">
<div id="label">
<a href="http://www.agriculture-durable.org/" target="_blank" id="rad"><img src="../../ressources/logo_rad.jpg" alt="réseaux dAgriculture Durable"></a>
<p id="AB">Depuis longtemps impliqués dans les réseaux dAgriculture Durable (RAD, ARDEAR, CIVAM..), cest naturellement que nous nous sommes tournés vers lAgriculture Biologique.</p><br/><br/>
<p id="blas">LAgriculture Biologique sappuie sur des ressources renouvelables, dans des systèmes agricoles organisés à léchelle locale. Le maintien de la fertilité des sols dépend de léquilibre entre élevage et cultures, avec le recyclage de la matière organique. Espèces et races sont autant que possible, adaptées au territoire, et à ses contraintes géographiques et climatiques.
Respect des cycles naturels et de lenvironnement, maintien de la biodiversité, limitation de la dépense énergétique, respect du bien-être animal, sont indispensables à lobtention dun produit de haute qualité pour le consommateur.<br/>
Les aliments issus dOGM et produits de synthèse ne sont pas autorisés. Au moins un contrôle annuel est effectué par un organisme certificateur agréé.<br/><br/></p>
<a href="http://www.label-viande-limousine.fr/comment-sy-retrouver.html" target="_blank"><img src="../../ressources/blason-prestige.jpg" alt="blason prestige" id="blason"></a>
<p>Blason Prestige est un label spécifique à la race limousine : veaux de lait et vaches de boucherie sont produits dans le respect du cahier des charges.<br/><br/>
Accueil Paysan concerne le tourisme lié à lAgriculture Durable, et fait partie du réseau RAD.</p>
</div>
</section>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

61
partenaire/produits.html Normal file
View file

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../../css/partenaires.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="../index.html"><img src="../../ressources/bg-header.jpg" alt="#"></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<div id="banniere">
<ul>
<li><a href="../index.html" accesskey="1" title="">Accueil</a></li>
<li><a href="../galerie/laferme.html" accesskey="3" title="">Galerie</a></li>
<li class="active"><a href="produits.html" accesskey="4" title="">Partenaires</a></li>
<li><a href="../visite/trouvez-nous.html" accesskey="2" title="">Votre Visite</a></li>
<li><a href="../reservation.html" accesskey="6" title="">Contact</a></li>
</ul>
</div>
<ul id="fixe">
<li style="margin-top: 30px;"><a class="active" href="produits.html" accesskey="7">Nos produits</a></li>
<li><a href="label_bio.html" accesskey="8">Nos labels</a></li>
<li><a href="tourisme.html" accesskey="9">Le Tourisme</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article>
<section>
<figure id="part1" class="content">
<a href =" https://www.facebook.com/SCA-Le-Pr%C3%A9-Vert-186191581525535/timeline/" target="_blank"><img src="../../ressources/presvert.jpg" alt="presvert"></a>
<figcaption>SCA Le Pré Vert
</figcaption>
</figure>
</section>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

71
partenaire/tourisme.html Normal file
View file

@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../../css/partenaires.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="../index.html"><img src="../../ressources/bg-header.jpg" alt="#"></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<div id="banniere">
<ul>
<li><a href="../index.html" accesskey="1" title="">Accueil</a></li>
<li><a href="../galerie/laferme.html" accesskey="3" title="">Galerie</a></li>
<li class="active"><a href="produits.html" accesskey="4" title="">Partenaires</a></li>
<li><a href="../visite/trouvez-nous.html" accesskey="2" title="">Votre Visite</a></li>
<li><a href="../reservation.html" accesskey="6" title="">Contact</a></li>
</ul>
</div>
<ul id="fixe">
<li style="margin-top: 30px;"><a href="produits.html" accesskey="7">Nos produits</a></li>
<li><a href="label_bio.html" accesskey="8">Nos labels</a></li>
<li><a class="active" href="tourisme.html" accesskey="9">Le Tourisme</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article>
<section>
<figure id="part1" class="content">
<a href ="http://www.tourisme-eymoutiers.fr/" target="_blank"><img src="../../ressources/ot.jpg" alt="office de tourisme d'Eymoutier"></a>
<figcaption>Pour les visites familiales, lOFFICE DE TOURISME d'Eymoutiers : vous y trouverez hébergement et restauration dans la région, ainsi que de nombreuses activités récréatives, sportives ou culturelles (Espace Rebeyrolle , Cité des Insectes , piscine , découverte du patrimoine , randonnées, marchés ...) . Un calendrier détaillé vous permettra de bien occuper vos journées.<br/> Le Pôle touristique de Vassivière se situe à 10 km de la ferme.
</figcaption>
</figure>
<figure id="part2" class="content">
<figcaption>Pour les circuits touristiques, le COMITE DEPARTEMENTAL DE TOURISME de la Haute Vienne.<br/><br/>Nous sommes aussi agréés par lEducation Nationale pour les scolaires.
</figcaption>
<a href ="http://www.tourisme-hautevienne.com/" target="_blank"><img src="../../ressources/tourisme-hv.jpg" alt="office de tourisme d'Eymoutier"></a>
</figure>
<figure id="part3" class="content">
<a href ="http://www.pnr-millevaches.fr/" target="_blank"><img src="../../ressources/pnr-millevaches.jpg" alt="PNR millevaches"></a>
<figcaption>Et sur la Route des Savoir-Faire avec le PNR Millevaches en Limousin : artisans, commerçants, agriculteurs ou artistes vous ouvrent leurs ateliers ; une autre façon dapprocher ce territoire.
</figcaption>
</figure>
</section>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB

BIN
ressources/ab.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
ressources/ac-limoges.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
ressources/bg-header.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
ressources/docs/affiche.pdf Normal file

Binary file not shown.

BIN
ressources/docs/flyer.pdf Normal file

Binary file not shown.

Binary file not shown.

BIN
ressources/docs/visite.pdf Normal file

Binary file not shown.

BIN
ressources/favicon_(1).ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
ressources/groupe.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

70
ressources/index.html Normal file
View file

@ -0,0 +1,70 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../css/index.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="./index.html"><img src="../ressources/bg-header.jpg" alt="#"></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<ul>
<li class="active"><a href="index.html" accesskey="1" title="">Accueil</a></li>
<li><a href="galerie/laferme.html" accesskey="2" title="">Galerie</a></li>
<li><a href="partenaire/produits.html" accesskey="3" title="">Partenaires</a></li>
<li><a href="visite/trouvez-nous.html" accesskey="4" title="">Votre Visite</a></li>
<li><a href="reservation.html" accesskey="5" title="">Contact</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article style="margin-top: 30px;">
<section>
<div class="content"> <!-- les atributs class et id servent pour le css -->
<h2 class="title"><a href="#" style="padding-bottom: 0px;">Maryse et Régis vous accueillent !</a></h2>
</div>
</section>
<section>
<div id="page" class="content">
<p><strong>La Ferme du Bos-Luguet</strong>
est située au cœur du Limousin sur les contreforts du Plateau de Millevaches sur un territoire de moyenne montagne, à la fois boisé et herbager, et parcouru d'une myriade de cours d'eau.<br/><br/>
Sur 53 ha de prairies, nous élèvons 45 vaches Limousines et aussi quelques laitières - pour produire des veaux de lait élevés sous la mère, des broutards et des vaches de boucherie.<br/><br/>
Nous vous accueillons tout au long de lannée ; en famille, en voyage organisé ou en sortie scolaire ; sur simple rendez-vous et par tous les temps pour des visites où vous découvrirez notre métier de paysan, le troupeau, parmi des paysages verdoyants, façonnés par lélevage, et changeant à chaque saison.<br/><br/>
Le tarif des visites est de 3 € / personne.<br/><br/>
Retrouvez toutes nos actualités et partagez votre avis sur notre page <a href="https://www.facebook.com/ferme.bosluguet" target="_blank">Facebook </a>et notre compte Twitter <a href="https://twitter.com/FermeBosLuguet" target="_blank">@FermeBosLuguet</a><br/><br/>
</p>
</div>
</section>
</article>
<footer id="footer">
<figure>
<a href="http://www.boucherieburgalieres.fr/ " target="_blank"><img src = "../ressources/bubu.jpg" alt="boucherie burgalières"></a>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.accueil-paysan.com/" target="_blank"><img src = "../ressources/logo_ap.gif" alt="paysan"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

BIN
ressources/logo_rad.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
ressources/ot.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

BIN
ressources/presvert.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
ressources/produit.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

BIN
ressources/ranch.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 776 KiB

BIN
ressources/tourisme-hv.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
ressources/veritas.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

65
visite/calendrier.html Normal file
View file

@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../../css/visite.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="../index.html"><img src="../../ressources/bg-header.jpg" alt="#"/></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<div id="banniere">
<ul>
<li><a href="../index.html" accesskey="1" title="">Accueil</a></li>
<li><a href="../galerie/laferme.html" accesskey="3" title="">Galerie</a></li>
<li><a href="../partenaire/produits.html" accesskey="4" title="">Partenaires</a></li>
<li class="active"><a href="trouvez-nous.html" accesskey="2" title="">Votre Visite</a></li>
<li><a href="../reservation.html" accesskey="6" title="">Contact</a></li>
</ul>
</div>
<ul id="fixe">
<li style="margin-top: 35px;"><a href="trouvez-nous.html" accesskey="7">Trouvez-Nous</a></li>
<li><a class="active" href="calendrier.html" accesskey="8">Calendrier</a></li>
<li><a href="document.html" accesskey="8">Documents</a></li>
<li><a href="groupe.html" accesskey="9">Groupes & Scolaires</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article>
<section>
<div id="page" class="content">
<iframe src="https://www.google.com/calendar/embed?height=450&amp;wkst=2&amp;bgcolor=%23c0c0c0&amp;src=ferme.bos-luguet%40live.fr&amp;color=%23711616&amp;src=fr.french%23holiday%40group.v.calendar.google.com&amp;color=%238C500B&amp;src=e_2_fr%23weeknum%40group.v.calendar.google.com&amp;color=%23B1365F&amp;ctz=Europe%2FParis" style=" border:solid 1px #777 ">
</iframe>
<div id="div">
<p> Des visites sont possible 365 Jours par an ; elles sont différentes chaque jour en fonction des activités de la ferme et du public. Vous pouvez retrouver ici les dates des visites planifiées, et réserver sur simple coup de fil. D'autres dates sont possibles sur rendez vous. </p>
</div>
</div>
</section>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

71
visite/document.html Normal file
View file

@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../../css/visite.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="../index.html"><img src="../../ressources/bg-header.jpg" alt="#"/></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<div id="banniere">
<ul>
<li><a href="../index.html" accesskey="1" title="">Accueil</a></li>
<li><a href="../galerie/laferme.html" accesskey="3" title="">Galerie</a></li>
<li><a href="../partenaire/produits.html" accesskey="4" title="">Partenaires</a></li>
<li class="active"><a href="trouvez-nous.html" accesskey="2" title="">Votre Visite</a></li>
<li><a href="../reservation.html" accesskey="6" title="">Contact</a></li>
</ul>
</div>
<ul id="fixe">
<li style="margin-top: 35px;"><a href="trouvez-nous.html" accesskey="7">Trouvez-Nous</a></li>
<li><a href="calendrier.html" accesskey="8">Calendrier</a></li>
<li><a class="active" href="document.html" accesskey="8">Documents</a></li>
<li><a href="groupe.html" accesskey="9">Groupes & Scolaires</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article id="special">
<section>
<div class="content">
<p>
<b>Les belles limousinesLa théorie des couleurs - de Henri CUECO (Le Limousin, terre sensible et rebelle Ed Autrement Mai 1995)</b><br/><br/>
"Jai souvent peint ou dessiné des vaches limousines. Jétais fasciné par les peintures des grottes de Lascaux, dont lécrivain limousin Michel Peyramaure avait prétendu que jétais lauteur. Jai peint aussi des vaches daprès le calendrier des Postes, célèbre pour ses réussites artistiques qui allient la fonction, le symbole et lesthétique.<br/>
Aujourdhui, ce qui me relie aux vaches, cest mon goût pour lherbe ; non pour le fourrage, mais pour lherbe comme sujet de mon travail. Jai dessiné et peint lherbe devant le seuil de mon atelier durant dix ans. Le constat le plus curieux est que, si lon regarde bien, lherbe nest pas verte : les trèfles sont bleus, les graminées ocres, etc. Lherbe seule se dépigmente au regard. Mais, si par chance surgit une vache limousine, rousse ou froment, ou ocre rouge, ou brique, le pré devient véritablement vert et les vaches encore plus rouges. On laura compris, les couleurs sexaltent par complémentarité. Ce phénomène, bien connu des physiologistes, des peintres et des vaches, explique pourquoi, en Charolais, où les vaches sont blanches, lherbe est noire."<br/><br/><br/>
Retrouvez Ici nos flyers et affiches ainsi que des documents et liens autour de nos valeurs et centres dintérêt:</p>
<ul>
<li><a href="../../ressources/docs/affiche.pdf" target="_blank">Notre Affiche</a></li>
<li><a href="../../ressources/docs/flyer.pdf" target="_blank">Nos Flyers</a></li>
</ul>
</div>
</section>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

75
visite/groupe.html Normal file
View file

@ -0,0 +1,75 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../../css/visite.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="../index.html"><img src="../../ressources/bg-header.jpg" alt="#"/></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<div id="banniere">
<ul>
<li><a href="../index.html" accesskey="1" title="">Accueil</a></li>
<li><a href="../galerie/laferme.html" accesskey="3" title="">Galerie</a></li>
<li><a href="../partenaire/produits.html" accesskey="4" title="">Partenaires</a></li>
<li class="active"><a href="trouvez-nous.html" accesskey="2" title="">Votre Visite</a></li>
<li><a href="../reservation.html" accesskey="6" title="">Contact</a></li>
</ul>
</div>
<ul id="fixe">
<li style="margin-top: 35px;"><a href="trouvez-nous.html" accesskey="7">Trouvez-Nous</a></li>
<li><a href="calendrier.html" accesskey="8">Calendrier</a></li>
<li><a href="document.html" accesskey="9">Documents</a></li>
<li><a class="active" href="groupe.html" accesskey="0">Groupes & Scolaires</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article id="special">
<section>
<div class="content" >
<p>Nous accueillons des groupes de tous âges et toutes origines : voyages organisés, sorties récréatives de club, public handicapé, etc…<br/><br/>
Nous accueillons également les scolaires de la maternelle - pour la découverte des animaux et de la nature , aux classes détudes agricoles- pour une approche technique et professionnelle de lélevage bio en plein air , en passant par le collège et le lycée via les programmes de Sciences et Vie de la Terre ou de Géographie. Nous sommes titulaires de l<b>Agrément des centres daccueil des sorties scolaires sans nuitées</b> (à la journée ou demi- journée) délivré par l'Education Nationale.<br/><br/>
Une organisation est possible avec des rotations en sous-groupes avec différentes activités (approche des animaux, découverte du paysage, tétée des veaux de lait, promenade nature …).<br/><br/>
Un espace pour pique-niquer est à disposition avec sanitaires et point deau ; le stationnement des bus est possible.
Le tarif est de 3€ /personne. Scolaires, nous consulter.<br/><br/>
Pour plus de renseignements consultez :
<ul>
<li>Un document sur des organisations de &nbsp; <a href="../../ressources/docs/visite.pdf" target="_blank"> visites</a></li>
<li><a href="../../ressources/docs/affiche.pdf" target="_blank">Notre Affiche</a></li>
<li><a href="../../ressources/docs/flyer.pdf" target="_blank">Nos Flyers</a></li>
</ul>
<img src="../../ressources/groupe.jpg" alt="groupe" id="group"/>
</div>
</section>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>

75
visite/trouvez-nous.html Normal file
View file

@ -0,0 +1,75 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- on dit que la page est codé en utf 8 -->
<meta name="keywords" content="Visite à la ferme" /> <!-- mots clefs -->
<meta name="description" content="Site pour visiter une ferme" /> <!-- description -->
<title>La Ferme du Bos-Luguet</title>
<link href="../../css/visite.css" rel="stylesheet" type="text/css" /> <!-- on attribut le css -->
<link rel="SHORTCUT ICON" href="../../ressources/favicon_(1).ico"/>
</head>
<body>
<header>
<div class="header">
<a href="../index.html"><img src="../../ressources/bg-header.jpg" alt="#"/></a>
</div>
<nav id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<div id="banniere">
<ul>
<li><a href="../index.html" accesskey="1" title="">Accueil</a></li>
<li><a href="../galerie/laferme.html" accesskey="3" title="">Galerie</a></li>
<li><a href="../partenaire/produits.html" accesskey="4" title="">Partenaires</a></li>
<li class="active"><a href="trouvez-nous.html" accesskey="2" title="">Votre Visite</a></li>
<li><a href="../reservation.html" accesskey="6" title="">Contact</a></li>
</ul>
</div>
<ul id="fixe">
<li style="margin-top: 35px;"><a class="active" href="trouvez-nous.html" accesskey="7">Trouvez-Nous</a></li>
<li><a href="calendrier.html" accesskey="8">Calendrier</a></li>
<li><a href="document.html" accesskey="9">Documents</a></li>
<li><a href="groupe.html" accesskey="0">
Groupes & Scolaires</a></li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<article>
<section>
<div id="page" class="content">
<p class="coordonnees">La Ferme du Bos-Luguet <br/>Le Bos-Luguet<br/>87120 EYMOUTIERS</p>
<p class="telephonemail">Tel : 05 55 69 26 45<br/>Mail : ferme.bos-luguet@live.fr</p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d38271.24566631392!2d1.6513355857307828!3d45.483057287710714!2m3!1f0!2f36.51840202879966!3f0!3m2!1i1024!2i768!4f35!3m3!1m2!1s0x47f90f1388edb069%3A0xefa0b499996fa5ba!2sla+ferme+du+bos-luguet!5e1!3m2!1sfr!2sfr!4v1385921644469">
</iframe>
<p class="direction"> Sortir dEymoutiers en direction de Nedde . 100m après le passage à niveau tourner à gauche au dos dâne, direction le Bos-Luguet. Suivre la petite route pendant 4Km. Tourner à droite au panneau Accueil Paysan.
</p>
<figure>
<a id="twitter" href="https://twitter.com/FermeBosLuguet" target="_blank"><img src="../../ressources/reseau/twitter.png" alt="twitter"><br/>@FermeBosLuguet</a>
<a id="facebook" href="https://www.facebook.com/ferme.bosluguet" target="_blank"><img src="../../ressources/reseau/facebook.gif" alt="facebook"><br/>La Ferme Du Bos Luguet</a>
<a id="forsquare" href="https://fr.foursquare.com/fermebosluguet" target="_blank"><img src="../../ressources/reseau/foursquare-logo.jpg" alt="forsquare"></a>
</figure>
</div>
</section>
</article>
<footer id="footer">
<figure>
<a href="http://www.agencebio.org/la-marque-ab" target="_blank"><img src = "../../ressources/ab.gif" alt="agence bio.org"></a>
<a href="http://www.bureauveritas.fr/wps/wcm/connect/bv_fr/local/services+sheet/certification+agriculture+biologique" target="_blank"><img src = "../../ressources/veritas.jpg" alt=" bureau veritas"></a>
<a href="http://www.tourisme-eymoutiers.fr" target="_blank"><img src = "../../ressources/ot.jpg" alt="tourisme eymoutiers"></a>
<a href="http://www.pnr-millevaches.fr/" target="_blank"><img src = "../../ressources/pnr-millevaches.jpg" alt="millevache"></a>
<a href="http://www.tourisme-hautevienne.com/" target="_blank"><img src = "../../ressources/tourisme-hv.jpg" alt="tourisme haute vienne"></a>
<a href="http://www.education.gouv.fr/cid21129/les-associations-agreees-et-ou-subventionnees-par-l-education-nationale.html " target="_blank"><img src = "../../ressources/ac-limoges.jpg" alt="education.gouv"></a>
</figure>
<p>05 55 69 26 45<br/>ferme.bos-luguet@live.fr <br/>2013 - <a href="http://www.iut.unilim.fr/departements-limoges-informatique/" target="_blank">Team Iut Limoges</a></p>
</footer>
</body>
</html>