JSFiddle - React, Tailwind, and code Playground
HTML
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<div id="input"></div>
CSS
#input {
display:none;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
JavaScript
$(function(){
var b = prompt('Paste Florum Output');
$('#input').html(b);
var weapon = $('font[color=white]').eq(0).text();
$('li:nth-child(1)').text(weapon);
var body = $('font[color=#C0C0C0]').eq(0).text();
$('li:nth-child(2)').text(body);
var head = $('font[color=#C0C0C0]').eq(1).text();
$('li:nth-child(3)').text(head);
var head = $('font[color=#C0C0C0]').eq(2).text();
$('li:nth-child(4)').text(head);
var boots = $('font[color=#C0C0C0]').eq(3).text();
$('li:nth-child(5)').text(boots);
var str = $('font[color=#606060]').eq(1).next().text();
$('li:nth-child(6)').text("Str: " + str);
var con = $('font[color=#606060]').eq(3).next().text();
$('li:nth-child(7)').text("Con: " + con);
var dex = $('font[color=#606060]').eq(5).next().text();
$('li:nth-child(8)').text("Dex: " + dex);
var int = $('font[color=#606060]').eq(7).next().text();
$('li:nth-child(9)').text("Int: " + int);
});