mention some of the articles
Answers
[tex]
<body>
<!-- Inicial -->
<div class="wrapper-box">
<!-- Olhos -->
<div class="olho -r">
<div class="luz -r"></div>
</div>
<div class="olho -l">
<div class="luz -l"></div>
</div>
<!-- Nariz -->
<div class="nariz"></div>
<!-- Bochecha -->
<div class="bochecha -r"></div>
<div class="bochecha -l"></div>
<!-- Fix -->
<div class="fix"></div>
<div class="fix2"></div>
<!-- Boca -->
<div class="boca">
<div class="lingua"></div>
</div>
<a href=" LINK "> CLICK Me </a>
</div>
<footer>
<p> </p>
</footer>
</div>
</body>
<style>
body {
margin: 0;
width: 100%;
height: 100%;
display: flex;
background-color: #fcd458;
}
a {
color: white;
text-decoration: none;
}
a:hover {
color: white;
}
a:active {
color: white;
}
.fas {
color: #b15656;
margin-left: .5rem;
}
footer {
display: flex;
align-items: flex-end;
margin-bottom: 2rem;
}
.wrapper-box {
position: relative;
margin: auto;
display: block;
margin-top: 0;
width: 350px;
height: 600px;
display: flex;
justify-content: center;
}
.olho {
width: 4rem;
height: 4rem;
background: black;
position: absolute;
border-radius: 4rem;
top: 30%;
left: 13%;
}
.olho.-r {
left: 65%;
}
.luz {
width: 1.5rem;
height: 1.5rem;
background-color: #fff;
border-radius: 1rem;
position: absolute;
left: 44%;
top: 13%;
animation: olhos 2s ease infinite;
}
.nariz {
width: 1rem;
height: 1rem;
background-color: black;
position: absolute;
left: 47%;
top: 44%;
border-radius: .5rem 0.5rem 1rem 1rem;
}
.bochecha {
width: 3rem;
height: 3rem;
background-color: #e15b42;
position: absolute;
border-radius: 8rem;
top: 48%;
}
.bochecha.-r {
left: 4%;
}
.bochecha.-l {
left: 80%;
}
.boca {
width: 6rem;
height: 6rem;
background-color: #83342f;
position: absolute;
left: 36%;
border-radius: 1rem 1rem 10rem 10rem;
top: 50%;
overflow: hidden;
}
.boca .lingua {
width: 4rem;
height: 4rem;
background: #e97b7c;
border-radius: 3rem;
position: absolute;
top: 61%;
left: 15%;
}
.boca:after {
content: '';
width: 4rem;
height: 3.8rem;
background: #fcd458;
position: absolute;
border-radius: 6rem;
top: -39%;
left: -19%;
transform: rotate(-7deg);
}
.boca:before {
content: '';
width: 4rem;
height: 3.8rem;
background: #fcd458;
position: absolute;
border-radius: 6rem;
top: -39%;
left: 46%;
transform: rotate(-7deg);
}
.fix {
width: 2rem;
height: 2rem;
background: #fcd458;
position: absolute;
left: 59%;
top: 47.5%;
z-index: 99999;
}
.fix2 {
width: 2rem;
height: 2rem;
background: #fcd458;
position: absolute;
left: 29%;
top: 48.5%;
z-index: 99999;
}
@keyframes olhos {
0% {
left: 44%;
}
50% {
left: 15%;
}
100% {
left: 44%;
}
}
</style>
[/tex]