Files
LOLv333/affiches/test333/index.html
T

53 lines
1.3 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" />
<link rel="stylesheet" href="./closedStyle.css">
<link rel="stylesheet" href="../style/animation.css">
<link rel="stylesheet" href="/style/typo.css">
<title>TEST EVENT 333</title>
<style>
/*=========================== INFROMATIONS AFFICHES :
la première balise style 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 main 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">
#testAffiche333{
width: 333px;
height: 333px;
background-color: red;
}
#testAffiche333 p{
color: black;
font-size: 33px;
}
</style>
</head>
<body>
<main id="testAffiche333">
<p>test affiche 333 !</p>
</main>
</body>
</html>