found how to write the banner elements in one line
This commit is contained in:
27
test.html
Normal file
27
test.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!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>
|
||||
|
||||
Reference in New Issue
Block a user