<div class="circle">
<span class="circle__number">
1
</span>
</div>
.circle {
width: 100px;
height: 100px;
border-radius: 100px;
background-color: red;
display: flex;
justify-content: center;
align-items: center;
}
.circle__number {
color: #fff;
font-size: 70px;
font-weight: bold;
}
const fs = require("fs");
fs.readFile('file.txt', (err, data) => {
if (err) {
throw err;
}
let fileRows = data.toString().split('\n');
let firstRow = fileRows.shift();
fileRows.push(firstRow);
const fileData = new Uint8Array(Buffer.from(fileRows.join('\n')));
fs.writeFile('file.txt', fileData, (err) => {
if (err) {
throw err;
}
});
});