Text Design
<style>
* { box-sizing: border-box; }
body{background-color:#7fffd4;}
.text{
font-size:80px;
font-weight:bold;
text-align:center;
}
</style>
<h5 class="text">My Text</h5>
My Text
.text{
text-decoration:line-through double #7fffd4;
}
My Text
.text{
text-decoration:line-through wavy #7fffd4;
}
My Text
.text{
text-decoration:line-through solid #7fffd4;
}
My Text
.text{
text-decoration:line-through dotted #7fffd4;
}
My Text
.text{
color:white;
text-decoration:line-through solid #7fffd4;
}
My Text
.text{
color:#fffe94;
text-decoration:line-through wavy #7fffd4;
}