I have the following code in Google AppSheet to send in an email. The code is in the email body:
<html>
<head>
</head>
<body>
<h1>Medidor Grande Consumo Alto!</h1>
Fecha: <<[Fecha]>><br>
Grande: <<[Grande]>><br>
Pequeño: <<[Pequeno]>><br>
<span style="font-weight: bold; color: red;">Consumo Grande: <<[Consumo Grande]>></span><br>
Consumo Pequeño: <<[Consumo Pequeno]>><br>
</body>
</html>
I get the following error, but when I test the code in "w3schools", everything works...no errors
The 'br' start tag on line 9 position 113 does not match the end tag of 'body'. Line 11, position 6.
What gives?
<html>
<head>
</head>
<body>
<h1>Medidor Grande Consumo Alto!</h1>
Fecha: <<[Fecha]>><br>
Grande: <<[Grande]>><br>
Pequeño: <<[Pequeno]>><br>
<span style="font-weight: bold; color: red;">Consumo Grande: <<[Consumo Grande]>></span><br>
Consumo Pequeño: <<[Consumo Pequeno]>><br>
</body>
</html>
I get the following error, but when I test the code in "w3schools", everything works...no errors
The 'br' start tag on line 9 position 113 does not match the end tag of 'body'. Line 11, position 6.
What gives?