@Saurabh @[deleted] 
Can anyone help me?
This custom HTML works perfectly on the following link https://cardapioaqui.store/sw/customhomemessage.html and local host.
When I add it to the Custom Home Message it bugs the translation page.
I realize that the custom HTML is influencing the Foodoma script code and should not.
Here is the attached image.


HTML:
`<!DOCTYPE html>
<html lang="pt-BR">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Slide Stories</title>
  <link rel="stylesheet" href="https://cardapioaqui.store/sw/style.css">
</head>
<body>
  <div data-slide="slide" class="slide">
    <div class="slide-items">
      <img src="https://cardapioaqui.store/sw/img1.jpg" alt="Img 1">
      <img src="https://cardapioaqui.store/sw/img2.jpg" alt="Img 2">
      <img src="https://cardapioaqui.store/sw/img3.jpg" alt="Img 3">
      <img src="https://cardapioaqui.store/sw/img4.jpg" alt="Img 4">
    </div>
    <nav class="slide-nav">
      <div class="slide-thumb"></div>
      <button class="slide-prev">Anterior</button>
      <button class="slide-next">Próximo</button>
    </nav>
  </div>
  <script src="https://cardapioaqui.store/sw/slide-stories.js"> </script>
</body>
</html>`