Facebook
From Luiiiiz, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 165
  1.  {% capture email_title %}Olá, {{ customer.first_name }}!  {% endcapture %}
  2.   {% capture email_body %}
  3.     {% if requires_shipping %}
  4.       Recebemos o seu pedido <b>{{ order_name }}</b>. O código de rastreio foi postado</b>. <br><br>Abaixo, você pode conferir o resumo da sua compra, mas também é possivel <a href="https://latviamodas.com/pages/rastreio?email=codigoderastreio&order={{ fulfillment.tracking_numbers.first }}" target="_blank" title="Rastreino do Produto">acompanhar o seu pedido</a> em nosso site. <br><br>Obrigado por comprar na {{ shop.name }}
  5.     {% endif %}
  6.   {% endcapture %}
  7.  
  8.   <!DOCTYPE html>
  9.   <html lang="pt-BR">
  10.     <head>
  11.     <title>{{ email_title }}</title>
  12.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  13.     <meta name="viewport" content="width=device-width">
  14.     <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css">
  15.     <style>
  16.       .button__cell { background: #48bb78; border-radius: 1000px }
  17.       a, a:hover, a:active, a:visited { color: {{ shop.email_accent_color }}; }
  18.    
  19.       .shop-name__cell {
  20.         display: flex;
  21.         flex-direction: column;
  22.         align-items: center;
  23.         justify-content: center;
  24.         background-color: #48bb78;
  25.         padding: 3em 0;
  26.         text-align: center;
  27.       }
  28.  
  29.       .shop-name__cell p {
  30.         color: white;
  31.         letter-spacing: 0.1em;
  32.         font-size: 1.125rem;
  33.         font-weight: 700;
  34.       }
  35.  
  36.       .email_body a {
  37.         color: #48bb78;
  38.       }
  39.  
  40.       .main-action-cell {
  41.         padding: 1rem .5rem;
  42.         background-color: #c6f6d5;
  43.       }
  44.  
  45.       .main-action-cell-tr {
  46.           display: flex;
  47.           flex-direction: column;
  48.           padding: 1em;
  49.       }
  50.  
  51.       .button__cell {
  52.         width: 100%;
  53.         max-width: 256px;
  54.         margin: 0 auto;
  55.         display: flex;
  56.         align-items: center;
  57.         justify-content: center;
  58.       }
  59.  
  60.       .button__cell-text {
  61.         font-size: .875rem;
  62.       }
  63.  
  64.       .button__text {
  65.         display: flex;
  66.         align-items: center;
  67.         justify-content: center;
  68.            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  69.       }
  70.  
  71.       .link__cell {
  72.         color: #5a5a5a;
  73.         font-size: .875rem;
  74.         letter-spacing: 0.1em;
  75.       }
  76.  
  77.       .secondary-action-cell {
  78.         padding-top: 0 !important;
  79.         margin-top: 0 !important;
  80.       }
  81.  
  82.       .order-list__item__cell {
  83.         padding: 5px 0 !important;
  84.       }
  85.  
  86.       .order-list__product-description-cell,
  87.       .order-list__item__cell {
  88.         display: flex;
  89.         align-items: center;
  90.         justify-content: space-between;
  91.         padding: 5px 0 !important;
  92.       }
  93.  
  94.       .order-list__item__cell table tbody tr {
  95.         display: flex;
  96.         align-items: center;
  97.         justify-content: space-between;
  98.       }
  99.  
  100.       .subtotal-lines {
  101.         margin: 0 !important;
  102.       }
  103.  
  104.       .section__cell {
  105.         padding: 0 0 !important;
  106.       }
  107.  
  108.       .m_-9060642977051719662shop-name__cell {
  109.         display: none !important;
  110.         text-align: center !important;
  111.       }
  112.     </style>
  113.   </head>
  114.  
  115.     <body>
  116.       <table class="body">
  117.         <tr>
  118.           <td>
  119.             <table class="header row">
  120.       <tr>
  121.       <td class="header__cell">
  122.         <center>
  123.  
  124.         <table class="container">
  125.           <tr>
  126.           <td>
  127.  
  128.             <table class="row">
  129.               <center>
  130.                 <tr class="teste" style="text-align: center !important;">
  131.                     <td class="shop-name__cell" style="text-align: center !important;">
  132.                     <div style="margin: 0 auto; text-align: center;">
  133.                         {%- if shop.email_logo_url %}
  134.                         <p>Rastreie seu pedido :)</p>
  135.                       {%- else %}
  136.                         <p>Rastreie seu pedido :)</p>
  137.                       {%- endif %}
  138.                       </div>
  139.                     </td>
  140.                 </tr>
  141.               </center>
  142.             </table>
  143.  
  144.           </td>
  145.           </tr>
  146.         </table>
  147.  
  148.         </center>
  149.       </td>
  150.       </tr>
  151.     </table>
  152.  
  153.             <table class="row content">
  154.     <tr>
  155.       <td class="content__cell">
  156.         <center>
  157.           <table class="container">
  158.             <tr>
  159.               <td>
  160.                
  161.               <p>{{ email_title }}</p>
  162.               <p class="email_body">{{ email_body }}</p>
  163.               {% if order_status_url %}
  164.                 <table class="row actions">
  165.     <tr>
  166.       <td class="empty-line"> </td>
  167.     </tr>
  168.     <tr>
  169.       <td class="actions__cell">
  170.         <table class="button main-action-cell" style="display: flex !important; flex-direction: column !important;">
  171.           <tr class="main-action-cell-tr">
  172.             <div>
  173.               <td class="button__cell-text" >● Objeto postado!<br> ● Você será notificada(o) automaticamente via e-mail para cada movimentação!<br>● As informações estarão disponíveis dentro de 4 dias. </td>
  174.             </div>
  175.             <br>
  176.           </tr>
  177.  
  178.           <tr class="main-action-cell-tr" style="display: flex; flex-direction: column;">
  179.             <div>
  180.               <td class="button__cell">
  181.               <a style="margin: 0 auto !important; padding: 20px 0 !important;" href="https://latviamodas.com/pages/rastreio?email=codigoderastreio&order={{ fulfillment.tracking_numbers.first }}" target="_blank" class="button__text">
  182.  
  183.  
  184.                 <?xml version="1.0" encoding="iso-8859-1"?>
  185.                 <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
  186.                 <svg version="1.1" id="Capa_1" width="24px" height="24px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
  187.                    viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
  188.                 <g>
  189.                   <g>
  190.                     <path d="M386.689,304.403c-35.587,0-64.538,28.951-64.538,64.538s28.951,64.538,64.538,64.538
  191.                       c35.593,0,64.538-28.951,64.538-64.538S422.276,304.403,386.689,304.403z M386.689,401.21c-17.796,0-32.269-14.473-32.269-32.269
  192.                       c0-17.796,14.473-32.269,32.269-32.269c17.796,0,32.269,14.473,32.269,32.269C418.958,386.738,404.485,401.21,386.689,401.21z"/>
  193.                   </g>
  194.                 </g>
  195.                 <g>
  196.                   <g>
  197.                     <path d="M166.185,304.403c-35.587,0-64.538,28.951-64.538,64.538s28.951,64.538,64.538,64.538s64.538-28.951,64.538-64.538
  198.                       S201.772,304.403,166.185,304.403z M166.185,401.21c-17.796,0-32.269-14.473-32.269-32.269c0-17.796,14.473-32.269,32.269-32.269
  199.                       c17.791,0,32.269,14.473,32.269,32.269C198.454,386.738,183.981,401.21,166.185,401.21z"/>
  200.                   </g>
  201.                 </g>
  202.                 <g>
  203.                   <g>
  204.                     <path d="M430.15,119.675c-2.743-5.448-8.32-8.885-14.419-8.885h-84.975v32.269h75.025l43.934,87.384l28.838-14.5L430.15,119.675z"
  205.                       />
  206.                   </g>
  207.                 </g>
  208.                 <g>
  209.                   <g>
  210.                     <rect x="216.202" y="353.345" width="122.084" height="32.269"/>
  211.                   </g>
  212.                 </g>
  213.                 <g>
  214.                   <g>
  215.                     <path d="M117.781,353.345H61.849c-8.912,0-16.134,7.223-16.134,16.134c0,8.912,7.223,16.134,16.134,16.134h55.933
  216.                       c8.912,0,16.134-7.223,16.134-16.134C133.916,360.567,126.693,353.345,117.781,353.345z"/>
  217.                   </g>
  218.                 </g>
  219.                 <g>
  220.                   <g>
  221.                     <path d="M508.612,254.709l-31.736-40.874c-3.049-3.937-7.755-6.239-12.741-6.239H346.891V94.655
  222.                       c0-8.912-7.223-16.134-16.134-16.134H61.849c-8.912,0-16.134,7.223-16.134,16.134s7.223,16.134,16.134,16.134h252.773v112.941
  223.                       c0,8.912,7.223,16.134,16.134,16.134h125.478l23.497,30.268v83.211h-44.639c-8.912,0-16.134,7.223-16.134,16.134
  224.                       c0,8.912,7.223,16.134,16.134,16.134h60.773c8.912,0,16.134-7.223,16.135-16.134V264.605
  225.                       C512,261.023,510.806,257.538,508.612,254.709z"/>
  226.                   </g>
  227.                 </g>
  228.                 <g>
  229.                   <g>
  230.                     <path d="M116.706,271.597H42.487c-8.912,0-16.134,7.223-16.134,16.134c0,8.912,7.223,16.134,16.134,16.134h74.218
  231.                       c8.912,0,16.134-7.223,16.134-16.134C132.84,278.82,125.617,271.597,116.706,271.597z"/>
  232.                   </g]>
  233.                 </g>
  234.                 <g>
  235.                   <g>
  236.                     <path d="M153.815,208.134H16.134C7.223,208.134,0,215.357,0,224.269s7.223,16.134,16.134,16.134h137.681
  237.                       c8.912,0,16.134-7.223,16.134-16.134S162.727,208.134,153.815,208.134z"/>
  238.                   </g>
  239.                 </g>
  240.                 <g>
  241.                   <g>
  242.                     <path d="M180.168,144.672H42.487c-8.912,0-16.134,7.223-16.134,16.134c0,8.912,7.223,16.134,16.134,16.134h137.681
  243.                       c8.912,0,16.134-7.223,16.134-16.134C196.303,151.895,189.08,144.672,180.168,144.672z"/>
  244.                   </g>
  245.                 </g>
  246.                 </svg>
  247.  
  248.  
  249.                       ➜Rastrear seu pedido
  250.  
  251.               </a></td>
  252.             </div>
  253.           </tr>
  254.         </table>
  255.         {% if shop.url %}
  256.       <table class="link secondary-action-cell" style="margin: 0 auto !important">
  257.           <tr style="margin: 0 auto !important">
  258.             <td class="link__cell" style="text-align: center; margin: 0 auto !important">ou <br> Código de rastreio: {{ fulfillment.tracking_numbers.first }}</td>
  259.           </tr>
  260.       </table>
  261.   {% endif %}
  262.  
  263.       </td>
  264.     </tr>
  265.   </table>
  266.  
  267.               {% else %}
  268.                 {% if shop.url %}
  269.       <table class="row actions">
  270.         <tr>
  271.           <td class="actions__cell">
  272.             <table class="button main-action-cell">
  273.               <tr>
  274.                 <td class="button__cell"><a href="{{ shop.url }}" class="button__text">Acesse nossa loja</a></td>
  275.               </tr>
  276.             </table>
  277.           </td>
  278.         </tr>
  279.       </table>
  280.   {% endif %}
  281.  
  282.               {% endif %}
  283.  
  284.               </td>
  285.             </tr>
  286.           </table>
  287.         </center>
  288.       </td>
  289.     </tr>
  290.   </table>
  291.  
  292.             <table class="row section">
  293.     <tr>
  294.       <td class="section__cell">
  295.         <center>
  296.           <table class="container">
  297.             <tr style="width: 100% !important; display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 5px 0">
  298.               <td>
  299.                 <h5><b>Itens do pedido</b></h5>
  300.               </td>
  301.               <td>
  302.                 <h5><b>Qtde.</b></h5>
  303.               </td>
  304.             </tr>
  305.           </table>
  306.           <table class="container">
  307.             <tr>
  308.               <td>
  309.                
  310.              
  311.   <table class="row">
  312.     {% for line in subtotal_line_items %}
  313.     <tr class="order-list__item" style="width: 100%; border-top-width: 1px; border-top-color: #e5e5e5; border-top-style: solid;">
  314.       <td class="order-list__item__cell" style="width: 100%; padding-top: 15px;">
  315.         <table style="width: 100%; height: 100%">
  316.             <td><img src="{{ line.variant.image }}" alt=""></td>
  317.             <td class="order-list__product-description-cell" style="width: 100%;">
  318.             {% if line.product.title %}
  319.               {% assign line_title = line.product.title %}
  320.             {% else %}
  321.               {% assign line_title = line.title %}
  322.             {% endif %}
  323.  
  324.             {% if line.quantity < line.quantity %}
  325.               {% capture line_display %} {{ line.quantity }} of {{ line.quantity }} {% endcapture %}
  326.             {% else %}
  327.               {% assign line_display = line.quantity  %}
  328.             {% endif %}
  329.  
  330.             <span class="order-list__item-title">{{ line_title }}</span><br/>
  331.  
  332.             {% if line.variant.title != 'Default Title' %}
  333.               <span class="order-list__item-variant">{{ line.variant.title }}</span><br/>
  334.             {% endif %}
  335.  
  336.               {% if line.refunded_quantity > 0 %}
  337.                 <span class="order-list__item-refunded">Refunded</span>
  338.               {% endif %}
  339.           </td>
  340.             <td class="order-list__price-cell">
  341.               <p class="order-list__item-price">
  342.                 {{ line_display }}
  343.               </p>
  344.             </td>
  345.         </table>
  346.       </td>
  347.     </tr>{% endfor %}
  348.   </table>
  349.  
  350.   <table class="row subtotal-lines">
  351.     <tr>
  352.       <td>
  353.         <table class="row subtotal-table">
  354.           {% for discount_application in discount_applications %}
  355.             {% if discount_application.target_selection == 'all' %}
  356.               {% capture discount_title %}
  357.                 {% if discount_application.title %}
  358.                   {{ discount_application.title | upcase }}
  359.                 {% else %}
  360.                   Desconto
  361.                 {% endif %}
  362.               {% endcapture %}
  363.   <tr class="subtotal-line">
  364.     <td class="subtotal-line__title">
  365.       <p>
  366.         <span>Desconto</span>
  367.           <span class="subtotal-line__discount">
  368.             <img src="{{ 'notifications/discounttag.png' | shopify_asset_url }}" width="18" height="18" class="discount-tag-icon" />
  369.             <span class="subtotal-line__discount-title">{{ discount_title }}</span>
  370.           </span>
  371.       </p>
  372.     </td>
  373.     <td class="subtotal-line__value">
  374.       <strong>-{{ discount_application.total_allocated_amount | money }}</strong>
  375.     </td>
  376.   </tr>
  377.              
  378.  
  379.             {% endif %}
  380.           {% endfor %}
  381.  
  382.          
  383.   <tr class="subtotal-line">
  384.     <td class="subtotal-line__title">
  385.       <p>
  386.         <span>Subtotal</span>
  387.       </p>
  388.     </td>
  389.     <td class="subtotal-line__value">
  390.       <strong>{{ subtotal_price | money }}</strong>
  391.     </td>
  392.   </tr>
  393.  
  394.          
  395.   <tr class="subtotal-line">
  396.     <td class="subtotal-line__title">
  397.       <p>
  398.         <span>Frete</span>
  399.       </p>
  400.     </td>
  401.     <td class="subtotal-line__value">
  402.       <strong>{{ shipping_price | money }}</strong>
  403.     </td>
  404.   </tr>
  405.  
  406.  
  407.           {% for line in tax_lines %}
  408.            
  409.   <tr class="subtotal-line">
  410.     <td class="subtotal-line__title">
  411.       <p>
  412.         <span>{{ line.title }}</span>
  413.       </p>
  414.     </td>
  415.     <td class="subtotal-line__value">
  416.       <strong>{{ line.price | money }}</strong>
  417.     </td>
  418.   </tr>
  419.  
  420.           {% endfor %}
  421.  
  422.           {% if total_duties %}
  423.            
  424.   <tr class="subtotal-line">
  425.     <td class="subtotal-line__title">
  426.       <p>
  427.         <span>Taxas de importação</span>
  428.       </p>
  429.     </td>
  430.     <td class="subtotal-line__value">
  431.       <strong>{{ current_total_duties | money }}</strong>
  432.     </td>
  433.   </tr>
  434.  
  435.           {% endif %}
  436.  
  437.          
  438.   <tr class="subtotal-line">
  439.     <td class="subtotal-line__title">
  440.       <p>
  441.         <span>Impostos</span>
  442.       </p>
  443.     </td>
  444.     <td class="subtotal-line__value">
  445.       <strong>{{ tax_price | money }}</strong>
  446.     </td>
  447.   </tr>
  448.  
  449.  
  450.           {% if total_tip and total_tip > 0 %}
  451.            
  452.   <tr class="subtotal-line">
  453.     <td class="subtotal-line__title">
  454.       <p>
  455.         <span>Tip</span>
  456.       </p>
  457.     </td>
  458.     <td class="subtotal-line__value">
  459.       <strong>{{ total_tip | money }}</strong>
  460.     </td>
  461.   </tr>
  462.  
  463.           {% endif %}
  464.         </table>
  465.         <table class="row subtotal-table subtotal-table--total">
  466.          
  467.   <tr class="subtotal-line">
  468.     <td class="subtotal-line__title" >
  469.       <p>
  470.         <span>Total</span>
  471.       </p>
  472.     </td>
  473.     <td class="subtotal-line__value" style="padding-bottom:  10px">
  474.       <strong>{{ total_price | money_with_currency }}</strong>
  475.     </td>
  476.   </tr>
  477.  
  478.         </table>
  479.  
  480.   <table class="row section">
  481.     <tr>
  482.       <td class="section__cell" style="margin: 0 0 !important">
  483.           <table>
  484.             <tr>
  485.               <td>
  486.               <br>
  487.                 <h3>Informações do cliente</h3>
  488.               </td>
  489.             </tr>
  490.           </table>
  491.           <table  style="margin: 0 0 !important">
  492.             <tr>
  493.               <td>
  494.                
  495.               <table class="row">
  496.                 <tr>
  497.                   {% if requires_shipping and shipping_address %}
  498.                   <td class="customer-info__item">
  499.                     <h4>Endereço de entrega</h4>
  500.                     {{ shipping_address | format_address }}
  501.                   </td>
  502.                   {% endif %}
  503.                 </tr>
  504.               </table>
  505.               <table class="row">
  506.                 <tr>
  507.                   {% if requires_shipping and shipping_address %}
  508.                   <td class="customer-info__item">
  509.                     <h4>Forma de frete</h4>
  510.                     <p>{{ shipping_method.title }}</p>
  511.                   </td>
  512.                   {% endif %}
  513.                 </tr>
  514.               </table>
  515.    
  516.               </td>
  517.             </tr>
  518.           </table>
  519.       </td>
  520.     </tr>
  521.   </table>
  522.  
  523.   <table class="row section" style="padding-bottom: 15px; border: 0 !important">
  524.     <tr>
  525.       <td class="section__cell">
  526.           <table style="margin: 0 0 !important">
  527.             <tr>
  528.               <td>
  529.                
  530.               <table class="row">
  531.                 <tr>
  532.                   {% if requires_shipping and shipping_address %}
  533.                   <td class="customer-info__item" style="padding: 5px 0 !important">
  534.                     <h5 style="color: red; font-weight: 700; font-size: 14px;">Atenção!</h5>
  535.                     <ul style="padding: 0 20px;">
  536.                       <li style="font-size: .875em">Confira nossa<b> POLÍTICA DE PRAZO</b>, basta acessar a página <a style="" href="https://latviamodas.com/pages/envios-e-prazo" target="_blank">Envios e prazos</a><br><br>
  537. <li style="font-size: .875em">Confira nossas<b> PERGUNTAS FREQUENTES</b>, basta acessar a página <a style="" href="https://latviamodas.com/pages/perguntas-frequentes" target="_blank">Perguntas Frequentes</a>
  538.                     </ul>
  539.                   </td>
  540.                   {% endif %}
  541.                 </tr>
  542.               </table>
  543.  
  544.               </td>
  545.             </tr>
  546.           </table>
  547.       </td>
  548.     </tr>
  549.   </table>
  550.  
  551.         {% assign transaction_size = 0 %}
  552.         {% assign transaction_amount = 0 %}
  553.         {% for transaction in transactions %}
  554.           {% unless transaction.kind == "capture" or transaction.kind == "void" %}
  555.             {% assign transaction_size = transaction_size | plus: 1 %}
  556.             {% assign transaction_amount = transaction_amount | plus: transaction.amount %}
  557.           {% endunless %}
  558.         {% endfor %}
  559.  
  560.         {% if transaction_size > 1 or transaction_amount < total_price %}
  561.           <table class="row subtotal-table">
  562.             <tr><td colspan="2" class="subtotal-table__line"></td></tr>
  563.             <tr><td colspan="2" class="subtotal-table__small-space"></td></tr>
  564.  
  565.             {% for transaction in transactions %}
  566.               {% if transaction.status == "success" and transaction.kind == "authorization" or transaction.kind == "sale" %}
  567.                 {% if transaction.payment_details.credit_card_company %}
  568.                   {% capture transaction_name %}{{ transaction.payment_details.credit_card_company }} (ending in {{ transaction.payment_details.credit_card_last_four_digits }}){% endcapture %}
  569.                 {% else %}
  570.                   {% capture transaction_name %}{{ transaction.gateway_display_name }}{% endcapture %}
  571.                 {% endif %}
  572.  
  573.                
  574.   <tr class="subtotal-line">
  575.     <td class="subtotal-line__title">
  576.       <p>
  577.         <span>{{transaction_name}}</span>
  578.       </p>
  579.     </td>
  580.     <td class="subtotal-line__value">
  581.       <strong>{{ transaction.amount | money }}</strong>
  582.     </td>
  583.   </tr>
  584.  
  585.               {% endif %}
  586.               {% if transaction.kind == 'refund' %}
  587.                 {% if transaction.payment_details.credit_card_company %}
  588.                   {% assign refund_method_title = transaction.payment_details.credit_card_company %}
  589.                 {% else %}
  590.                   {% assign refund_method_title = transaction.gateway %}
  591.                 {% endif %}
  592.  
  593.                
  594.   <tr class="subtotal-line">
  595.     <td class="subtotal-line__title">
  596.       <p>
  597.         <span>Reembolsar</span>
  598.           <br>
  599.           <small>{{ refund_method_title | capitalize }}</small>
  600.       </p>
  601.     </td>
  602.     <td class="subtotal-line__value">
  603.       <strong>- {{ transaction.amount | money }}</strong>
  604.     </td>
  605.   </tr>
  606.  
  607.               {% endif %}
  608.             {% endfor %}
  609.           </table>
  610.         {% endif %}
  611.       </td>
  612.     </tr>
  613.   </table>
  614.  
  615.  
  616.               </td>
  617.             </tr>
  618.           </table>
  619.         </center>
  620.       </td>
  621.     </tr>
  622.   </table>
  623.  
  624.             <table class="row footer">
  625.     <tr>
  626.       <td class="footer__cell">
  627.         <center>
  628.           <table class="container">
  629.             <tr>
  630.               <td>
  631.                 <h1 style="margin-bottom: 7px">Fale conosco</h1>
  632.                 <div class="disclaimer__subtext">Nosso whatsapp: <a href="http://wa.me/5512997862686" target="_blank">Clique aqui</a></div>
  633.                 <div class="disclaimer__subtext">Nosso Email: <a href="mailto:[email protected]" target="_blank">[email protected]</a></div>
  634.               </td>
  635.             </tr>
  636.           </table>
  637.         </center>
  638.       </td>
  639.     </tr>
  640.   </table>
  641.  
  642.   <img src="{{ 'notifications/spacer.png' | shopify_asset_url }}" class="spacer" height="1" />
  643.  
  644.           </td>
  645.         </tr>
  646.       </table>
  647.     </body>
  648.   </html>