modif html et css
This commit is contained in:
parent
71b120be56
commit
91dc87bdad
2 changed files with 21 additions and 10 deletions
13
index.html
13
index.html
|
@ -9,15 +9,16 @@
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<section>
|
<h1>Our Team Members</h1>
|
||||||
<h1>Our Team Members</h1>
|
<section id="bloc1">
|
||||||
<div id = personne>
|
<div id="fiche">
|
||||||
<p id = "nom"></p>
|
<img id = "avatar" src="" alt="Photo d'identité">
|
||||||
<p id = "prenom"></p>
|
<p id = "nom"></p> <p id = "prenom"></p>
|
||||||
<p id = "identifiant"></p>
|
<p id = "identifiant"></p>
|
||||||
<p id = "email"></p>
|
<p id = "email"></p>
|
||||||
<img id = "avatar" src="" alt="Photo d'identité">
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="personne"></div>
|
||||||
</section>
|
</section>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
18
style.css
18
style.css
|
@ -1,11 +1,21 @@
|
||||||
#personne {
|
h1 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bloc1 {
|
||||||
|
text-align: left;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
}
|
||||||
justify-content: space-around;
|
|
||||||
flex-wrap: wrap;
|
#fiche{
|
||||||
|
background-color: rgba(237, 236, 254, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
img{
|
img{
|
||||||
width:100px;
|
width:100px;
|
||||||
clip-path:ellipse(50% 50%);
|
clip-path:ellipse(50% 50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#nom, #prenom {
|
||||||
|
display: inline;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue