parent
ad64fec36a
commit
63002741a0
6 changed files with 489 additions and 23 deletions
@ -0,0 +1,37 @@ |
|||||||
|
# menu |
||||||
|
en dur |
||||||
|
|
||||||
|
# template |
||||||
|
home anim + ---acceuil p5 + p3 / 8 |
||||||
|
blog (tumblr) |
||||||
|
actualite |
||||||
|
vitrine -> 1 seul md same as acceuil |
||||||
|
--- contact same as acceuil |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# content |
||||||
|
meta yaml |
||||||
|
|
||||||
|
author |
||||||
|
date |
||||||
|
cat |
||||||
|
titre |
||||||
|
gal |
||||||
|
|
||||||
|
|
||||||
|
# md |
||||||
|
unique |
||||||
|
|
||||||
|
accceuil |
||||||
|
contact |
||||||
|
vitrine |
||||||
|
|
||||||
|
post |
||||||
|
actualite |
||||||
|
|
||||||
|
avoir |
||||||
|
blog (flux rss) |
||||||
|
|
||||||
|
|
||||||
@ -0,0 +1,387 @@ |
|||||||
|
<!DOCTYPE html> |
||||||
|
<html lang="en"> |
||||||
|
<head> |
||||||
|
<meta charset="UTF-8"> |
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
||||||
|
<title>LA PETITE ECOLE</title> |
||||||
|
<link rel="stylesheet" href="style.css"> |
||||||
|
<link rel="stylesheet" href="fonts/courierprime.css"> |
||||||
|
<link rel="stylesheet" href="fonts/script.css"> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<div id="homeSpacer"> |
||||||
|
|
||||||
|
|
||||||
|
</div> |
||||||
|
|
||||||
|
<div class="picto_sun"> |
||||||
|
<img src="img/picto/sun.svg" class="yellow_filter"> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div class="picto_shape"> |
||||||
|
<img src="img/picto/picto_pe_07.svg" class="pink_filter"> |
||||||
|
</div> |
||||||
|
|
||||||
|
<nav> |
||||||
|
<div id="menu"> |
||||||
|
<div id="topBtn"> |
||||||
|
<div>LA PETITE ECOLE</div> |
||||||
|
<div>☓</div> |
||||||
|
</div> |
||||||
|
<ul > |
||||||
|
<li class="menuItem"><a href="index.html"><span><img src="img/barre.svg" alt="bar"></span><h3>Blog </h3></a> </li> |
||||||
|
<li class="menuItem"><span><img src="img/barre.svg" alt="bar"></span><h3>Actualite </h3></li> |
||||||
|
<li class="menuItem"><span><img src="img/barre.svg" alt="bar"></span><h3>Vitrine </h3></li> |
||||||
|
<li class="menuItem"><span><img src="img/barre.svg" alt="bar"></span><h3>Recherche </h3></li> |
||||||
|
<li class="menuItem"><span><img src="img/barre.svg" alt="bar"></span><h3>Contact </h3></li> |
||||||
|
</ul> |
||||||
|
|
||||||
|
</div> |
||||||
|
|
||||||
|
</nav> |
||||||
|
<div id="content"> |
||||||
|
<div id="logo"> |
||||||
|
<img src="img/logo.svg" alt="logo"> |
||||||
|
</div> |
||||||
|
<div class="wrapper"> |
||||||
|
<h1>Welcome to la petit ecole</h1> |
||||||
|
<p> |
||||||
|
This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-direction: row | row-reverse | column | column-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
row (default): left to right in ltr; right to left in rtl |
||||||
|
row-reverse: right to left in ltr; left to right in rtl |
||||||
|
column: same as row but top to bottom |
||||||
|
column-reverse: same as row-reverse but bottom to top |
||||||
|
|
||||||
|
flex-wrap |
||||||
|
two rows of boxes, the first wrapping down onto the second |
||||||
|
|
||||||
|
By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-wrap: nowrap | wrap | wrap-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
nowrap (default): all flex items will be on one line |
||||||
|
wrap: flex items will wrap onto multiple lines, from top to bottom. |
||||||
|
wrap-reverse: flex items will wrap onto multiple lines from bottom to top. |
||||||
|
|
||||||
|
There are some visual demos of flex-wrap h |
||||||
|
|
||||||
|
|
||||||
|
</p> |
||||||
|
<p> |
||||||
|
This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-direction: row | row-reverse | column | column-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
row (default): left to right in ltr; right to left in rtl |
||||||
|
row-reverse: right to left in ltr; left to right in rtl |
||||||
|
column: same as row but top to bottom |
||||||
|
column-reverse: same as row-reverse but bottom to top |
||||||
|
|
||||||
|
flex-wrap |
||||||
|
two rows of boxes, the first wrapping down onto the second |
||||||
|
|
||||||
|
By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-wrap: nowrap | wrap | wrap-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
nowrap (default): all flex items will be on one line |
||||||
|
wrap: flex items will wrap onto multiple lines, from top to bottom. |
||||||
|
wrap-reverse: flex items will wrap onto multiple lines from bottom to top. |
||||||
|
|
||||||
|
There are some visual demos of flex-wrap h |
||||||
|
|
||||||
|
|
||||||
|
</p> |
||||||
|
<p> |
||||||
|
This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-direction: row | row-reverse | column | column-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
row (default): left to right in ltr; right to left in rtl |
||||||
|
row-reverse: right to left in ltr; left to right in rtl |
||||||
|
column: same as row but top to bottom |
||||||
|
column-reverse: same as row-reverse but bottom to top |
||||||
|
|
||||||
|
flex-wrap |
||||||
|
two rows of boxes, the first wrapping down onto the second |
||||||
|
|
||||||
|
By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-wrap: nowrap | wrap | wrap-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
nowrap (default): all flex items will be on one line |
||||||
|
wrap: flex items will wrap onto multiple lines, from top to bottom. |
||||||
|
wrap-reverse: flex items will wrap onto multiple lines from bottom to top. |
||||||
|
|
||||||
|
There are some visual demos of flex-wrap h |
||||||
|
|
||||||
|
|
||||||
|
</p> |
||||||
|
<p> |
||||||
|
This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-direction: row | row-reverse | column | column-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
row (default): left to right in ltr; right to left in rtl |
||||||
|
row-reverse: right to left in ltr; left to right in rtl |
||||||
|
column: same as row but top to bottom |
||||||
|
column-reverse: same as row-reverse but bottom to top |
||||||
|
|
||||||
|
flex-wrap |
||||||
|
two rows of boxes, the first wrapping down onto the second |
||||||
|
|
||||||
|
By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-wrap: nowrap | wrap | wrap-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
nowrap (default): all flex items will be on one line |
||||||
|
wrap: flex items will wrap onto multiple lines, from top to bottom. |
||||||
|
wrap-reverse: flex items will wrap onto multiple lines from bottom to top. |
||||||
|
|
||||||
|
There are some visual demos of flex-wrap h |
||||||
|
|
||||||
|
|
||||||
|
</p> |
||||||
|
<p> |
||||||
|
This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-direction: row | row-reverse | column | column-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
row (default): left to right in ltr; right to left in rtl |
||||||
|
row-reverse: right to left in ltr; left to right in rtl |
||||||
|
column: same as row but top to bottom |
||||||
|
column-reverse: same as row-reverse but bottom to top |
||||||
|
|
||||||
|
flex-wrap |
||||||
|
two rows of boxes, the first wrapping down onto the second |
||||||
|
|
||||||
|
By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-wrap: nowrap | wrap | wrap-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
nowrap (default): all flex items will be on one line |
||||||
|
wrap: flex items will wrap onto multiple lines, from top to bottom. |
||||||
|
wrap-reverse: flex items will wrap onto multiple lines from bottom to top. |
||||||
|
|
||||||
|
There are some visual demos of flex-wrap h |
||||||
|
|
||||||
|
|
||||||
|
</p> |
||||||
|
<p> |
||||||
|
This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-direction: row | row-reverse | column | column-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
row (default): left to right in ltr; right to left in rtl |
||||||
|
row-reverse: right to left in ltr; left to right in rtl |
||||||
|
column: same as row but top to bottom |
||||||
|
column-reverse: same as row-reverse but bottom to top |
||||||
|
|
||||||
|
flex-wrap |
||||||
|
two rows of boxes, the first wrapping down onto the second |
||||||
|
|
||||||
|
By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-wrap: nowrap | wrap | wrap-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
nowrap (default): all flex items will be on one line |
||||||
|
wrap: flex items will wrap onto multiple lines, from top to bottom. |
||||||
|
wrap-reverse: flex items will wrap onto multiple lines from bottom to top. |
||||||
|
|
||||||
|
There are some visual demos of flex-wrap h |
||||||
|
|
||||||
|
|
||||||
|
</p> |
||||||
|
<p> |
||||||
|
This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-direction: row | row-reverse | column | column-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
row (default): left to right in ltr; right to left in rtl |
||||||
|
row-reverse: right to left in ltr; left to right in rtl |
||||||
|
column: same as row but top to bottom |
||||||
|
column-reverse: same as row-reverse but bottom to top |
||||||
|
|
||||||
|
flex-wrap |
||||||
|
two rows of boxes, the first wrapping down onto the second |
||||||
|
|
||||||
|
By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-wrap: nowrap | wrap | wrap-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
nowrap (default): all flex items will be on one line |
||||||
|
wrap: flex items will wrap onto multiple lines, from top to bottom. |
||||||
|
wrap-reverse: flex items will wrap onto multiple lines from bottom to top. |
||||||
|
|
||||||
|
There are some visual demos of flex-wrap h |
||||||
|
|
||||||
|
|
||||||
|
</p> |
||||||
|
<p> |
||||||
|
This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-direction: row | row-reverse | column | column-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
row (default): left to right in ltr; right to left in rtl |
||||||
|
row-reverse: right to left in ltr; left to right in rtl |
||||||
|
column: same as row but top to bottom |
||||||
|
column-reverse: same as row-reverse but bottom to top |
||||||
|
|
||||||
|
flex-wrap |
||||||
|
two rows of boxes, the first wrapping down onto the second |
||||||
|
|
||||||
|
By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-wrap: nowrap | wrap | wrap-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
nowrap (default): all flex items will be on one line |
||||||
|
wrap: flex items will wrap onto multiple lines, from top to bottom. |
||||||
|
wrap-reverse: flex items will wrap onto multiple lines from bottom to top. |
||||||
|
|
||||||
|
There are some visual demos of flex-wrap h |
||||||
|
|
||||||
|
|
||||||
|
</p> |
||||||
|
<p> |
||||||
|
This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-direction: row | row-reverse | column | column-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
row (default): left to right in ltr; right to left in rtl |
||||||
|
row-reverse: right to left in ltr; left to right in rtl |
||||||
|
column: same as row but top to bottom |
||||||
|
column-reverse: same as row-reverse but bottom to top |
||||||
|
|
||||||
|
flex-wrap |
||||||
|
two rows of boxes, the first wrapping down onto the second |
||||||
|
|
||||||
|
By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-wrap: nowrap | wrap | wrap-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
nowrap (default): all flex items will be on one line |
||||||
|
wrap: flex items will wrap onto multiple lines, from top to bottom. |
||||||
|
wrap-reverse: flex items will wrap onto multiple lines from bottom to top. |
||||||
|
|
||||||
|
There are some visual demos of flex-wrap h |
||||||
|
|
||||||
|
|
||||||
|
</p> |
||||||
|
<p> |
||||||
|
This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-direction: row | row-reverse | column | column-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
row (default): left to right in ltr; right to left in rtl |
||||||
|
row-reverse: right to left in ltr; left to right in rtl |
||||||
|
column: same as row but top to bottom |
||||||
|
column-reverse: same as row-reverse but bottom to top |
||||||
|
|
||||||
|
flex-wrap |
||||||
|
two rows of boxes, the first wrapping down onto the second |
||||||
|
|
||||||
|
By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-wrap: nowrap | wrap | wrap-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
nowrap (default): all flex items will be on one line |
||||||
|
wrap: flex items will wrap onto multiple lines, from top to bottom. |
||||||
|
wrap-reverse: flex items will wrap onto multiple lines from bottom to top. |
||||||
|
|
||||||
|
There are some visual demos of flex-wrap h |
||||||
|
|
||||||
|
|
||||||
|
</p> |
||||||
|
<p> |
||||||
|
This establishes the main-axis, thus defining the direction flex items are placed in the flex container. Flexbox is (aside from optional wrapping) a single-direction layout concept. Think of flex items as primarily laying out either in horizontal rows or vertical columns. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-direction: row | row-reverse | column | column-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
row (default): left to right in ltr; right to left in rtl |
||||||
|
row-reverse: right to left in ltr; left to right in rtl |
||||||
|
column: same as row but top to bottom |
||||||
|
column-reverse: same as row-reverse but bottom to top |
||||||
|
|
||||||
|
flex-wrap |
||||||
|
two rows of boxes, the first wrapping down onto the second |
||||||
|
|
||||||
|
By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. |
||||||
|
|
||||||
|
.container { |
||||||
|
flex-wrap: nowrap | wrap | wrap-reverse; |
||||||
|
} |
||||||
|
|
||||||
|
nowrap (default): all flex items will be on one line |
||||||
|
wrap: flex items will wrap onto multiple lines, from top to bottom. |
||||||
|
wrap-reverse: flex items will wrap onto multiple lines from bottom to top. |
||||||
|
|
||||||
|
There are some visual demos of flex-wrap h |
||||||
|
|
||||||
|
|
||||||
|
</p> |
||||||
|
|
||||||
|
<div class="gal"> |
||||||
|
<div class="gal-img"> |
||||||
|
<img src="https://images.unsplash.com/photo-1527681192512-bca34fd580bb?q=80&w=2671&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="crabe"> |
||||||
|
</div><div class="gal-img"> |
||||||
|
<img src="https://images.unsplash.com/photo-1527681192512-bca34fd580bb?q=80&w=2671&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="crabe"> |
||||||
|
</div><div class="gal-img"> |
||||||
|
<img src="https://images.unsplash.com/photo-1527681192512-bca34fd580bb?q=80&w=2671&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="crabe"> |
||||||
|
</div> |
||||||
|
|
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
|
||||||
|
|
||||||
|
<script src="js/jquery-3.7.1.min.js"></script> |
||||||
|
<script src="index.js"></script> |
||||||
|
</body> |
||||||
|
</html> |
||||||
|
|
||||||
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 33 KiB |
Loading…
Reference in new issue