-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentetes_differentes_supports_differents.html
105 lines (80 loc) · 1.57 KB
/
entetes_differentes_supports_differents.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="bootstrap/css/style.css" rel="stylesheet">
<style type="text/css">
/*footer, nav.col-lg-12{ background-color: transparent;
border: 0;
}
.col-lg-4 { line-height: 200px; }
.col-lg-12,.col-lg-10 { line-height: 80px; }*/
.col-lg-2 { line-height: 100px; }
.col-lg-5 { line-height: 200px; }
.col-lg-12 { line-height: 80px; }
</style>
</head>
<body>
<!-- MA METHODE -->
<!-- <div class="container">
<header class="row">
<div class="col-lg-12">
Entete
</div>
</header>
<div class="row">
<div class="col-lg-offset-1 col-lg-2">
<div class="row">
<nav class="col-lg-12">
Navigation
</nav>
</div>
</div>
<section class="col-lg-4">
Section
</section>
<section class="col-lg-4">
Section
</section>
</div>
<footer class="row">
<div class="col-lg-offset-1 col-lg-10">
Pied de page
</div>
</footer>
</div> -->
<header>
<div class="visible-lg col-lg-12">
Entete large
</div>
<div class="visible-md col-lg-12">
Entete moyenne
</div>
<div class="visible-sm col-lg-12">
Entete tablette
</div>
<div class="visible-xs col-lg-12">
Entete smartphone
</div>
</header>
<div class="container">
<div class="row">
<nav class="col-lg-2">
Navigation
</nav>
<section class="col-lg-5 col-md-6">
Section
</section>
<section class="col-lg-5 col-md-6">
Section
</section>
</div>
<footer class="row">
<div class="col-lg-12">
Pied de page
</div>
</footer>
</div>
</body>
</html>