Given:
<html>
<style>
@font-face
{font-family:"MS Mincho"}
</style>
</html>
How could I add @font-face {font-family:"MS Gothic"} to this style tag?
I'm using Beautiful soup 4 and the following code to select the style, but unsure how to add the new style after the first:
code = BeautifulSoup(html, 'html.parser')
s = code.select('style')