52 lines
1.2 KiB
HTML
52 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" type="image/svg" href="../assets/favicon.svg" />
|
|
<title>TEST EVENT</title>
|
|
<style data-import="no-import">
|
|
/*=========================== INFROMATIONS AFFICHES :
|
|
|
|
le style 'no-import' est filtrée
|
|
ici on place les eléments qui entre en conflit avec
|
|
la page principale
|
|
|
|
les suivant sont inclus
|
|
|
|
IMPORTANT : il faut nommer le <article> avec un id unique
|
|
pour éviter les conflit avec les reste du site
|
|
|
|
====================================================*/
|
|
|
|
body{
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: black;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
</style>
|
|
|
|
<style media="screen">
|
|
#testAffiche{
|
|
width: 333px;
|
|
height: 333px;
|
|
background-color: green;
|
|
}
|
|
|
|
#testAffiche p{
|
|
color: black;
|
|
font-size: 33px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<article id="testAffiche">
|
|
<p>test affiche !</p>
|
|
</article>
|
|
</body>
|
|
</html>
|