I've been looking for a way to convert regular characters (ABC) to full-width characters (ABC), but I haven't had any luck so far. That's why I'm turning to you guys for help. Currently, I don't have any JavaScript code written yet. Here is the HTML snippet I have:
<html>
<head>
</head>
<body>
<link rel="stylesheet" type="text/css" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Space+Mono" rel="stylesheet">
<h1>Text Converter 2000</h1>
<textarea placeholder="Text Input" id="textarea_left" spellcheck="false"></textarea>
<textarea placeholder="Text Output" id="textarea_right" spellcheck="false"></textarea>
</body>
</html>
Also, here is the CSS code that I currently have:
body {
background: linear-gradient(270deg, #ffa6ff, #6bffff);
background-size: 200% 200%;
-webkit-animation: backgroundGradient 15s linear infinite;
-moz-animation: backgroundGradient 15s linear infinite;
animation: backgroundGradient 15s linear infinite;
}
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
h1 {
font-family: 'Space Mono', monospace;
font-size: 50px;
margin-left: 640px;
color: #631b87;
-webkit-animation: simpleColorChange 5s ease infinite;
-moz-animation: simpleColorChange 5s ease infinite;
-o-animation: simpleColorChange 5s ease infinite;
animation: simpleColorChange 5s ease infinite;
}
/* more CSS code goes here... */
Your assistance with this matter is greatly appreciated.