I haven’t tried it myself, but this might work if you use a little bit of code:
import wixWindow from 'wix-window';
$w.onReady(function() {
if (wixWindow.formFactor === "Mobile") {
let myText = $w('#text1').text
.then($w('#text1').html = `<h6 style ="font-size:8px;color:#000000">${myText}</h6>`);
}
})