mirror of
https://github.com/peter-tanner/peter-tanner.github.io.git
synced 2024-11-30 20:10:18 +08:00
70 lines
2.4 KiB
HTML
70 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>EA Sports - It's in the game</title>
|
|
<meta
|
|
name="description"
|
|
content="EAntEAr any tEAxt and have it EAmphasizEAd!"
|
|
/>
|
|
<meta charset="UTF-8" />
|
|
|
|
<style>
|
|
textarea {
|
|
border: 1px solid #999999;
|
|
width: 80%;
|
|
margin: 0.5% 0;
|
|
padding: 0.25%;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
|
|
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
|
|
crossorigin="anonymous"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<div style="text-align: center; margin: 1%">
|
|
<h2>EA its in the game</h2>
|
|
<h4>Enter any tEAxt</h4>
|
|
<textarea id="text" spellcheck="false" rows="20">
|
|
Sample text Ok this is epic Ea sports: its in the game
|
|
|
|
The intent is to provide players with a sense of pride and accomplishment for unlocking different heroes.
|
|
As for cost, we selected initial values based upon data from the Open Beta and other adjustments made to milestone rewards before launch. Among other things, we're looking at average per-player credit earn rates on a daily basis, and we'll be making constant adjustments to ensure that players have challenges that are compelling, rewarding, and of course attainable via gameplay.
|
|
We appreciate the candid feedback, and the passion the community has put forth around the current topics here on Reddit, our forums and across numerous social media outlets.
|
|
Our team will continue to make changes and monitor community feedback and update everyone as soon and as often as we can.
|
|
</textarea
|
|
><br />
|
|
<button
|
|
style="width: 10%; height: 5vh; margin: 1%"
|
|
class="btn btn-danger"
|
|
onclick="EA()"
|
|
>
|
|
EA
|
|
</button>
|
|
</div>
|
|
<a
|
|
class="link"
|
|
style="left: 1%; bottom: 1%; position: absolute"
|
|
href="https://www.petertanner.dev/legacy_site"
|
|
>🔗 Back to home page</a
|
|
><br />
|
|
|
|
<script>
|
|
function EA() {
|
|
const e = document.getElementById("text");
|
|
var str = e.value;
|
|
var EA = str
|
|
.replace(/[eE](?![ Aa.eE]|$|\n)/g, "EA")
|
|
.replace(/[eE][aA]/g, "EA");
|
|
e.value = EA;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|