15 lines
276 B
HTML
15 lines
276 B
HTML
<!doctype html>
|
|
<title>CSS Test Reference</title>
|
|
<style>
|
|
.text {
|
|
background-color: DeepPink;
|
|
background-clip: text;
|
|
font-size: 50px;
|
|
font-family: sans-serif;
|
|
font-weight: 600;
|
|
color: transparent;
|
|
}
|
|
</style>
|
|
<div class="text">
|
|
<p>Text</p>
|
|
</div>
|