What's new
HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

The 'br' start tag on line 9 position 113 does not match the end tag of 'body'. Line 11, position 6.

mtbe

New member
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: &lt;&lt;[Fecha]&gt;&gt;<br>
Grande: &lt;&lt;[Grande]&gt;&gt;<br>
Pequeño: &lt;&lt;[Pequeno]&gt;&gt;<br>
<span style="font-weight: bold; color: red;">Consumo Grande: &lt;&lt;[Consumo Grande]&gt;&gt;</span><br>
Consumo Pequeño: &lt;&lt;[Consumo Pequeno]&gt;&gt;<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?
 
Back
Top