so I need help converting my HTML code to use Bootstrap components.
About the Program
I am making a program that has 26 pictures, each resembling a different letter of the alphabet. Each picture is a button, and when a button is pressed, the designated letter that corresponds with each picture is added to the text located below the pictures. This is meant for the game "The Legend of Zelda: Breath of the Wild" as the game features glyphs that convert to real English letters and are used to form real English sentences.
What I am trying to do
I am trying to make my program aesthetically pleasing by incorporating bootstrap components. So far, I have used the "textarea" tag in my code, as it allows the user to modify the text they have created. When a user presses a button, the corresponding letter of that button is added to the text within the "textarea". I do not know of a substitute for the "textarea" tag that would work for my case, and I checked the Bootstrap documentation to no avail.
Code
var letter;
function choose(choice) {
document.getElementById('Translation').innerHTML = document.getElementById('Translation').innerHTML + choice;
}
#no button {
border: none;
padding: 0;
background: none;
}
<div id="no">
<button type="button" onclick="choose('A')">
<img src="img/A.png" style="width:64px;height:64px;">
</button>
<button type="button" onclick="choose('B')">
<img src="img/B.png" style="width:64px;height:64px;">
</button>
<button type="button" onclick="choose('C')">
<img src="img/C.png" style="width:64px;height:64px;">
</button>
<br>
<textarea id="Translation"> </textarea>
</div>
P.S.
Sorry that the code is not evenly divided into the HTML, CSS, and JS boxes on JSFiddle, but my code isn't working when I divide it. I'm probably doing something wrong, I just got back into coding from a 2-year break.