main
This commit is contained in:
parent
63a4067b19
commit
b1a3848464
3 changed files with 133 additions and 14 deletions
49
Page1.html
49
Page1.html
|
@ -1,14 +1,37 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<meta charset="UTF-8">
|
||||||
<head>
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta charset="UTF-8">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<link rel="stylesheet" href="style.css" type="text/css">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<html>
|
||||||
<link rel="stylesheet" href="style.css">
|
<head>
|
||||||
<link rel="code" href="Page1.js">
|
<title>7 Continents</title>
|
||||||
<title>Projet Web</title>
|
</head>
|
||||||
</head>
|
|
||||||
<body>
|
<body>
|
||||||
|
<header>
|
||||||
</body>
|
<img src="images/globe.png" alt="Globe Logo" width="50px" />
|
||||||
|
<nav>
|
||||||
|
<a href="Page1.html">Home</a>
|
||||||
|
<a href="Puissance4.html">Puissance 4</a>
|
||||||
|
<a href="Morpion.html">Morpion</a>
|
||||||
|
<a href="Snake.html">Snake</a>
|
||||||
|
<a href="JustePrix.html">Juste Prix</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<section>
|
||||||
|
<article>
|
||||||
|
<div class="list">
|
||||||
|
<a href="Page1.html">Home</a>
|
||||||
|
<a href="Puissance4.html">Puissance 4</a>
|
||||||
|
<a href="Morpion.html">Morpion</a>
|
||||||
|
<a href="Snake.html">Snake</a>
|
||||||
|
<a href="JustePrix.html">Juste Prix</a>
|
||||||
|
</ul>
|
||||||
|
</article>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
<footer>© Copyright 2019 by ME. All Rights Reserved.</footer>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -1 +1,37 @@
|
||||||
//test
|
<!DOCTYPE HTML>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="style.css" type="text/css">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>7 Continents</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<img src="images/globe.png" alt="Globe Logo" width="50px" />
|
||||||
|
<nav>
|
||||||
|
<a href="Page1.html">Home</a>
|
||||||
|
<a href="Puissance4.html">Puissance 4</a>
|
||||||
|
<a href="Morpion.html">Morpion</a>
|
||||||
|
<a href="Snake.html">Snake</a>
|
||||||
|
<a href="JustePrix.html">Juste Prix</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<section>
|
||||||
|
<article>
|
||||||
|
<div class="list">
|
||||||
|
<a href="Page1.html">Home</a>
|
||||||
|
<a href="Puissance4.html">Puissance 4</a>
|
||||||
|
<a href="Morpion.html">Morpion</a>
|
||||||
|
<a href="Snake.html">Snake</a>
|
||||||
|
<a href="JustePrix.html">Juste Prix</a>
|
||||||
|
</ul>
|
||||||
|
</article>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
<footer>© Copyright 2019 by ME. All Rights Reserved.</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
60
style.css
60
style.css
|
@ -0,0 +1,60 @@
|
||||||
|
header
|
||||||
|
{
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
align-items: center;
|
||||||
|
background-color: white;
|
||||||
|
padding-left: 0.5em;
|
||||||
|
padding-right: 0.5em;
|
||||||
|
padding-top:0.1em;
|
||||||
|
row-gap: 50px;
|
||||||
|
}
|
||||||
|
img
|
||||||
|
{
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
body
|
||||||
|
{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
background-color: #17a2b8;
|
||||||
|
margin: 0%;
|
||||||
|
padding: 0%;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
a
|
||||||
|
{
|
||||||
|
text-decoration: none;
|
||||||
|
color: grey;
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
section
|
||||||
|
{
|
||||||
|
padding-top: 3em;
|
||||||
|
padding-bottom: 3em;
|
||||||
|
background-color: lightgrey;
|
||||||
|
margin: 20em;
|
||||||
|
margin-top : 5em;
|
||||||
|
margin-bottom: 5em;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
}
|
||||||
|
article
|
||||||
|
{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.list a
|
||||||
|
{
|
||||||
|
background-color: white;
|
||||||
|
padding-top:1em;
|
||||||
|
padding-bottom: 1em;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
}
|
||||||
|
.list{
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3,1fr);
|
||||||
|
gap: 1em;
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
footer{
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
Loading…
Reference in a new issue