-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_fr.html
65 lines (51 loc) · 2.19 KB
/
index_fr.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial scale=1.0">
<title>Le Peu Girard. La ferme, Les vacances, Les produits bio
</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bauernhof.css">
<link href='http://fonts.googleapis.com/css?family=Amatic+SC:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Josefin+Sans:400,300' rel='stylesheet' type='text/css'>
<script src="//use.typekit.net/sch4kzi.js"></script>
<script>try{Typekit.load();}catch(e){}</script>
</head>
<body>
<!--row 1 -->
<div class="container-fluid">
<img class="startbild" src="img/start_web.jpg" id="bauernhof_bild" alt="Unser Bauernhof">
<nav class="row">
<div class="logo col-md-4 col-sm-4 col-xs-4">
<a href="index.html" title="Zurück auf die Startseite">
<img class="logo" src="img/logo.png" alt"Logo">
</a>
</div>
<ul class="col-md-8 col-sm-8 col-xs-8 menu">
<li class="fifth_nav"><a href="contact.html" title="Kontakt">Contact</a></li>
<li class="forth_nav"><a href="images.html" title="Ein paar schöne Bilder">Photos</a></li>
<li class="third_nav"><a href="produits.html" title="Unsere feinen Produkte">Produits <br>de la ferme</a></li>
<li class="second_nav "><a href="vacances.html" title="Ferien bei uns">Vacances à la ferme</a></li>
<li class="first_nav"> <a href="nous.html" title="Nous et nos animaux">Nous et nos animaux</a></li>
</ul>
<a class="nav-icon" href="#"></a>
</nav>
<a href="index.html" class="language">Deutsch</a>
<div class="willkommen row">
<a href="ueber_uns.html" title="Über uns und unser Tiere">
<h1 class="col-lg-7 col-lg-offset-4 col-md-8 col-md-offset-3 col-sm-10 col-sm-offset-1 col-xs-12">BIENVENUE AU PEU GIRARD...</h1>
</a>
</div>
</div> <!--Ende Container-fluid-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js" ></script>
<script>
$(document).ready(function(){
$('.nav-icon').on('click', function(e){
e.preventDefault();
$('nav ul').slideToggle();
});
});
</script>
</body>
</html>