logo lucie coupin
HTML
<nav><span id="prenom">lucie</span> <span id="nom">coupin</span> <div id="dot"></div></nav>
CSS
nav {
display: flex;
flex-direction: row;
align-items: center;
}
nav * {
margin-right: 10px;
}
nav #prenom {
font-family: monospace;
font-size: 2em;
}
nav #nom {
font-family: sans-serif;
font-size: 2em;
}
nav #dot {
height: 1em;
width: 1em;
background-color: #27348B;
border-radius: 0.5em;
}