<h1>Girl</h1>
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@600&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100vw;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 20px;
font-family: "Exo", Arial, sans-serif;
background-color: #f7f7f7;
}
h1 {
font-size: clamp(30px, 20vw + 2rem, 50px);
display: list-item;
}
h1::before {
content: "👧";
}
h1::after {
content: "\01F33A";
}
h1::marker {
content: "❤️🔥:";
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.