28 lines
804 B
HTML
28 lines
804 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: linear-gradient(to right, black 1px, transparent 1px) 0 0 / 30px 100% repeat-x;
|
|
/* Adjust the size of the text and color here */
|
|
}
|
|
.repeat-text::before {
|
|
content: 'Your Text '; /* Add your desired text here */
|
|
color: black; /* Set the color of the text */
|
|
font-size: 16px; /* Set the font size of the text */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="repeat-text"></div>
|
|
</body>
|
|
</html>
|
|
|