Why modified HTML bot cannot be generated?

Hello,

I set up Automation to generate and save HTML to Google Drive with default HTML template successfully. However it is not going to generate and save HTML after I modified HTML template in "/Content/xxx.html" with text editor.

I am not sure that is my HTML code causes it not working. Becasue all the settings are the same between default HTML template & modified HTML template. Therefore I paste my modified HTML code as below:

<html>
<head>
	<meta charset="utf-8" />
	<title>Example of image behind text</title>
</head>
    <style>
        .img {
            margin: 0%;
            position: relative;
			size: 21cm 29.7cm;
        }
  
        .first-txt {
            position: absolute;
            top: 200px;
            left: 350px;
        }
  
        .second-txt {
            position: absolute;
            top: 200px;
            right: 130px;
        }
  
        .last-txt {
            position: absolute;
            bottom: 20px;
            left: 10px;
        }
    </style>
</head>
  
<body>
    <div class="img">
        <img src="https://i.ibb.co/m5qvFJx/Testing-Application-Form.jpg";>
		<h3 class="first-txt"><p>VendorNo: &lt;&lt;[VendorNo]&gt;&gt;</p></h3>
        <h3 class="second-txt"><p>EventStartDate: &lt;&lt;[EventStartDate]&gt;&gt;</p></h3>          
        <h1 class="last-txt"><p>Your Booth Area is &lt;&lt;[BoothArea]&gt;&gt;</p></h1>
    </div>
</body>  
</html>

Above code is trying to include [VendorNo], [EventStartDate] & [BoothArea] fill in the form(actually the form is an image) .

What cause the modified HTML bot cannot be generated? Thank you.

Solved Solved
0 5 129
1 ACCEPTED SOLUTION

There is nothing wrong with your template at first sight.
Please check the monitor app if there is any error.

https://www.appsheet.com/start/2846dc1c-3bc6-4d82-9ede-dba57ff4096c

View solution in original post

5 REPLIES 5

There is nothing wrong with your template at first sight.
Please check the monitor app if there is any error.

https://www.appsheet.com/start/2846dc1c-3bc6-4d82-9ede-dba57ff4096c

Thank you for introducing Appsheet monitor app. That is really crystal clear to figure out what stop me go futher.

FYI. The modified HTML can run by browser because of high fault tolerance. However Appsheet may not. So the monitor app indicates some minor mistake. Now it is working as expected. Thank you. You saved me a day.

You're welcome!

Btw, was the ";" inside the img tag?

Affirmative !!!

๐Ÿ˜‰Thanks

Top Labels in this Space