THIS SITE WAS MADE FOR LINEWIZE BLOCKER AND NOT LIGHTSPEED!!!! (if yall really wanna argue and call me the n word then go on my discord ill wait)
COPY THE HTML BELOW!!!!!!!!!!! (please copy the credit....)
<!-- Games Unite Random Message Generator HTML --!>
<!-- For more Stuff like This Go To sites.google.com/view/G4mesunite/ --!>
<!-- Made by GamesUniteOwner --!>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Text on Refresh made by gamesuniteowner!</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
body {
font-family: 'Lato', sans-serif;
display: flex;
justify-content: flex-start;
align-items: center;
height: 100vh;
overflow: hidden;
background-color: transparent;
padding-left: 20px;
}
#randomText {
font-size: 70px;
font-weight: bold;
color: white;
}
</style>
</head>
<body>
<div id="randomText"></div>
<script>
const texts = [
"YOUR TEXT HERE",
"YOUR TEXT HERE",
"YOUR TEXT HERE",
"YOUR TEXT HERE"
];
document.getElementById("randomText").textContent = texts[Math.floor(Math.random() * texts.length)];
</script>
</body>
</html>