It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://danubealert.com/

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.    <meta charset="UTF-8">
  5.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.    <title>Danube Levels - Water Level  | DanubeAlert.com</title>    
  7. <meta name="description" content="Monitor Danube River water levels in real time with DanubeAlert.com. Set custom alerts for cities along the Danube and receive instant updates on changing conditions." />
  8.    <meta name="keywords" content="Danube water levels, river levels Danube, Danube flood alerts, real-time river monitoring, water level updates Danube, river water alerts, custom alerts Danube" />
  9.    <link rel="canonical" href="https://danubealert.com/en/" />
  10.    <meta name="robots" content="index, follow" />
  11.    <meta property="og:title" content="Real-Time Danube River Water Levels - DanubeAlert.com" />
  12.    <meta property="og:description" content="Get personalized water level alerts for cities along the Danube River with DanubeAlert.com. Stay updated with real-time notifications directly to your device." />
  13.    <meta property="og:url" content="https://danubealert.com/en/" />
  14.    <meta property="og:type" content="website" />
  15.    <link rel="alternate" href="https://danubealert.com/en/" hreflang="en" />
  16.    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
  17.    <link rel="stylesheet" href="https://danubealert.com/style.css">
  18.    <link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
  19.    <script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
  20.  
  21.    <!-- Google Analytics -->
  22.    <script async src="https://www.googletagmanager.com/gtag/js?id=G-4PPSD1QXJ5"></script>
  23.    <script>
  24.        window.dataLayer = window.dataLayer || [];
  25.        function gtag(){dataLayer.push(arguments);}
  26.        gtag('js', new Date());
  27.        gtag('config', 'G-4PPSD1QXJ5');
  28.    </script>
  29. </head>
  30.  
  31. <body>
  32.  
  33.  
  34. <!-- Popup HTML -->
  35. <div id="alertPopup" class="popup-modal">
  36.    <div class="popup-content">
  37.        <span id="popupClose" class="popup-close">&times;</span>
  38.        <div id="popupMessage"></div>
  39.        <a href="/functions/register.php" class="popup-btn">Create an Account</a>
  40.    </div>
  41. </div>
  42.  
  43. <!-- Basic Styles for the Popup -->
  44. <style>
  45.    /* Modal Background */
  46.    .popup-modal {
  47.        display: none; /* Hidden by default */
  48.        position: fixed;
  49.        z-index: 1000;
  50.        left: 0;
  51.        top: 0;
  52.        width: 100%;
  53.        height: 100%;
  54.        background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  55.        justify-content: center;
  56.        align-items: center;
  57.    }
  58.  
  59.    /* Popup Content */
  60.    .popup-content {
  61.        background-color: white;
  62.        padding: 20px;
  63.        border-radius: 10px;
  64.        max-width: 400px;
  65.        width: 90%;
  66.        text-align: center;
  67.        position: relative;
  68.        opacity: 0; /* Hidden by default */
  69.        transition: opacity 0.3s ease-in-out;
  70.    }
  71.  
  72.    /* Close Button */
  73.    .popup-close {
  74.        position: absolute;
  75.        top: 10px;
  76.        right: 10px;
  77.        font-size: 24px;
  78.        cursor: pointer;
  79.        color: black;
  80.    }
  81.  
  82.    /* Button Style */
  83.    .popup-btn {
  84.        display: inline-block;
  85.        margin-top: 20px;
  86.        padding: 10px 20px;
  87.        background-color: #2d98da;
  88.        color: white;
  89.        border: none;
  90.        border-radius: 5px;
  91.        text-decoration: none;
  92.        font-size: 16px;
  93.    }
  94.  
  95.    /* Responsive adjustments for mobile */
  96.    @media only screen and (max-width: 768px) {
  97.        .popup-content {
  98.            width: 90%;
  99.            font-size: 14px;
  100.        }
  101.  
  102.        .popup-close {
  103.            font-size: 18px;
  104.        }
  105.  
  106.        .popup-btn {
  107.            font-size: 14px;
  108.            padding: 8px 16px;
  109.        }
  110.    }
  111. </style>
  112.  
  113. <!-- JavaScript for Pop-up -->
  114. <script>
  115.    document.addEventListener('DOMContentLoaded', function() {
  116.        // Messages for rotation
  117.        const messages = [
  118.            "Create an account today to benefit from Danube Alert. You can set LDC levels and get notified.",
  119.            "Stay ahead with HDC alerts! Sign up now and monitor high water levels effortlessly.",
  120.            "Customize your water level alerts for the Danube. Register now and set your preferences.",
  121.            "Never miss a low water level alert again. Create an account and set up LDC notifications.",
  122.            "Get instant HDC alerts directly to your inbox. Sign up and stay informed.",
  123.            "Monitor the Danube like a pro. Create custom alerts tailored to your needs."
  124.        ];
  125.  
  126.        // Randomly select a message to display
  127.        const randomIndex = Math.floor(Math.random() * messages.length);
  128.        const selectedMessage = messages[randomIndex];
  129.  
  130.        // Display the selected message in the popup
  131.        document.getElementById('popupMessage').innerHTML = selectedMessage;
  132.  
  133.        // Show the popup after 15 seconds if not already closed
  134.        setTimeout(function() {
  135.            const popup = document.getElementById('alertPopup');
  136.            const popupContent = document.querySelector('.popup-content');
  137.  
  138.            // Show the popup modal
  139.            popup.style.display = 'flex';
  140.  
  141.            // Make the popup content visible with fade-in effect
  142.            popupContent.style.opacity = 1;
  143.  
  144.        }, 15000); // 15 seconds delay
  145.  
  146.        // Close the popup when the close button is clicked
  147.        document.getElementById('popupClose').onclick = function() {
  148.            document.getElementById('alertPopup').style.display = 'none';
  149.        };
  150.  
  151.        // Close the popup when clicking outside the popup content
  152.        window.onclick = function(event) {
  153.            const popup = document.getElementById('alertPopup');
  154.            if (event.target === popup) {
  155.                popup.style.display = 'none';
  156.            }
  157.        };
  158.    });
  159. </script>
  160.  
  161.  
  162.  
  163. <!-- Header -->
  164. <div class="header" style="
  165.    background-color: #2d98da;
  166.    color: white;
  167.    padding: 10px 20px;
  168.    display: flex;
  169.    justify-content: space-between;
  170.    align-items: center;
  171.    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);">
  172.    
  173.    <!-- Translated site title -->
  174.    <div style="font-size: 22px; font-weight: bold;">Danube Alerts</div>
  175.  
  176.    <div class="navbar" style="position: relative; margin-right: 0px; display: flex; align-items: center; flex-grow: 1; justify-content: flex-end;">
  177.        <!-- Iconiță My Account -->
  178.        <div class="icon-container" style="margin-right: 20px;">
  179.            <span class="menu-icon" onclick="toggleMyAccountMenu()" style="cursor: pointer;">
  180.                <i class="fas fa-user-circle"></i>
  181.            </span>
  182.            <div class="menu" id="menu" style="display: none; left: auto; right: 0;">
  183.                                    <a href="https://danubealert.com/functions/login.php">Login</a>
  184.                    <a href="https://danubealert.com/functions/register.php">Register</a>
  185.                            </div>
  186.        </div>
  187.  
  188.  
  189.        <!-- Iconiță pentru notificări -->
  190.        
  191.        <!-- Iconiță pentru admin -->
  192.            </div>
  193. </div>
  194.  
  195.  
  196. <!-- Secondary Menu -->
  197. <div class="secondary-menu" style="
  198.    display: flex;
  199.    justify-content: center;
  200.    margin: 0;
  201.    padding: 10px;
  202.    background-color: #fff;
  203.    border-radius: 5px;
  204.    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  205. ">
  206.    <a href="https://danubealert.com/en/" style="margin: 0 15px; text-decoration: none; color: #333; font-weight: bold;">Home</a>
  207.    <a href="https://danubealert.com/en/about" style="margin: 0 15px; text-decoration: none; color: #333; font-weight: bold;">About</a>
  208.    <a href="https://danubealert.com/pricing.php" style="margin: 0 15px; text-decoration: none; color: #333; font-weight: bold;">Pricing</a>
  209.    <a href="https://danubealert.com/contact.php" style="margin: 0 15px; text-decoration: none; color: #333; font-weight: bold;">Contact</a>
  210. </div>
  211.  
  212.  
  213.  
  214.  
  215. <script>
  216.    let openMenu = null; // Variabilă pentru a reține meniul deschis
  217.  
  218.    function toggleMenu(menuId) {
  219.        const menu = document.getElementById(menuId);
  220.  
  221.        // Închide meniul deschis anterior, dacă este diferit de cel curent
  222.        if (openMenu && openMenu !== menu) {
  223.            openMenu.style.display = 'none';
  224.        }
  225.  
  226.        // Comută vizibilitatea meniului curent
  227.        menu.style.display = (menu.style.display === 'block') ? 'none' : 'block';
  228.  
  229.        // Actualizează meniul deschis
  230.        openMenu = (menu.style.display === 'block') ? menu : null;
  231.    }
  232.  
  233.    // Funcții pentru fiecare meniu
  234.    function toggleMyAccountMenu() {
  235.        toggleMenu('menu');
  236.    }
  237.  
  238.    function toggleAlertMenu() {
  239.        toggleMenu('alert-menu');
  240.    }
  241.  
  242.    function toggleAdminMenu() {
  243.        toggleMenu('admin-menu');
  244.    }
  245.  
  246.    // Ascunde meniurile când cursorul părăsește zona
  247.    document.querySelectorAll('.menu').forEach(menu => {
  248.        menu.addEventListener('mouseleave', () => {
  249.            menu.style.display = 'none';
  250.            openMenu = null; // Resetează meniul deschis
  251.        });
  252.    });
  253.  
  254.    // Ascunde toate meniurile la click pe document
  255.    document.addEventListener('click', (event) => {
  256.        const menus = document.querySelectorAll('.menu');
  257.        menus.forEach(menu => {
  258.            if (menu.style.display === 'block' && !menu.contains(event.target) && !event.target.closest('.icon-container')) {
  259.                menu.style.display = 'none';
  260.            }
  261.        });
  262.  
  263.        // Verifică dacă click-ul a fost pe o iconiță
  264.        if (event.target.closest('.icon-container')) {
  265.            // Nu face nimic, permite deschiderea meniului
  266.        } else {
  267.            openMenu = null; // Resetează meniul deschis
  268.        }
  269.    });
  270. </script>
  271.  
  272.  
  273. <div class="container">
  274.    <h1>Danube Levels - Water Level</h1>
  275.  
  276.    <!-- Harta Dunării -->
  277.    <div class="card map-container">
  278.        <div id="map" style="width: 100%; height: 500px;"></div>
  279.    </div>
  280.  
  281. <script>
  282.    var map = L.map('map').setView([45.5, 22.5], 6);
  283.  
  284.    L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
  285.        maxZoom: 18,
  286.        attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
  287.    }).addTo(map);
  288.  
  289.    var danubeGeoJSON = "https://danubealert.com/export.geojson";
  290.  
  291.    function style(feature) {
  292.        return {
  293.            color: 'blue',
  294.            weight: 5,
  295.            opacity: 0.7
  296.        };
  297.    }
  298.  
  299.    L.geoJSON(null, {
  300.        style: style,
  301.        onEachFeature: function (feature, layer) {
  302.            if (feature.properties.name === 'Danube' || feature.properties.name === 'Dunărea') {
  303.                layer.addTo(map);
  304.            }
  305.        }
  306.    }).addTo(map);
  307.  
  308.    fetch(danubeGeoJSON)
  309.        .then(function(response) {
  310.            return response.json();
  311.        })
  312.        .then(function(data) {
  313.            L.geoJSON(data, {
  314.                style: style,
  315.                filter: function(feature, layer) {
  316.                    return feature.properties.name === "Danube";
  317.                }
  318.            }).addTo(map);
  319.        });
  320. </script>
  321. <!-- SEO Text -->
  322.    <div class="card">
  323.        <p>
  324.            
  325. <h2>Danube River Water Levels</h2>
  326. <p><strong>DanubeAlert</strong> is your comprehensive solution for monitoring <strong>Danube River water levels</strong> across seven countries: <strong>Austria, Slovakia, Hungary, Croatia, Serbia, Bulgaria</strong>, and <strong>Romania</strong>. Our app provides you with real-time data and <strong>custom alerts</strong> for water levels, ensuring you're always informed about the river's conditions.</p>
  327. <h3><strong>Real-time Danube Water Level Monitoring Across 7 Countries</strong></h3>
  328. <p>With <strong>DanubeAlert</strong>, you can easily monitor the <strong>Danube River's water levels</strong> in all the major cities along the river in <strong>Austria, Slovakia, Hungary, Croatia, Serbia, Bulgaria</strong>, and <strong>Romania</strong>. Whether you need the <strong>Danube water level forecast</strong> or historical data, our platform delivers accurate and up-to-date information.</p>
  329. <h3><strong>Flood Warnings and Water Level Alerts</strong></h3>
  330. <p>Stay ahead of potential floods with <strong>DanubeAlert's flood warnings</strong> for any city or country along the Danube. Set up <strong>custom water level alerts</strong> for specific locations in <strong>Austria</strong>, <strong>Slovakia</strong>, <strong>Hungary</strong>, <strong>Croatia</strong>, <strong>Serbia</strong>, <strong>Bulgaria</strong>, and <strong>Romania</strong> to receive notifications when water levels approach critical points.</p>
  331. <h3><strong>Your Danube River Monitoring App</strong></h3>
  332. <p>The <strong>DanubeAlert</strong> platform is ideal for users in the <strong>transportation</strong> or <strong>agricultural industries</strong>, as well as for residents of riverside communities in any of the 7 Danube countries. Our app provides accurate data, making it the perfect tool for staying informed about the river's behavior across <strong>Austria</strong>, <strong>Slovakia</strong>, <strong>Hungary</strong>, <strong>Croatia</strong>, <strong>Serbia</strong>, <strong>Bulgaria</strong>, and <strong>Romania</strong>.</p>
  333. <h3><strong>Detailed Hydrological Data for the Danube</strong></h3>
  334. <p><strong>DanubeAlert</strong> offers precise <strong>hydrological data</strong> for the entire river. With real-time updates, you can track the <strong>Danube River's water levels</strong> and view long-term trends in all 7 countries. Our <strong>Danube water level forecast</strong> feature helps you anticipate changes, ensuring you're always prepared.</p>
  335. <h3><strong>Stay Informed About Water Levels in Austria, Slovakia, Hungary, Croatia, Serbia, Bulgaria, and Romania</strong></h3>
  336. <p>Wherever you are along the Danube – in <strong>Austria</strong>, <strong>Slovakia</strong>, <strong>Hungary</strong>, <strong>Croatia</strong>, <strong>Serbia</strong>, <strong>Bulgaria</strong>, or <strong>Romania</strong> – <strong>DanubeAlert</strong> provides reliable and real-time monitoring of the water levels. Access essential data to stay prepared for any significant changes in water levels.</p>
  337.        </p>
  338.    </div>
  339.  
  340. <!-- Descriere aplicație -->
  341. <div class="card">
  342.    <p>
  343.        <h2>Danube Water Level</h2>The <strong>Danube Alert</strong> application is dedicated to the constant monitoring of water levels on the Danube, covering the countries through which the river flows:        <a href="/en/Austria">Austria</a>,
  344.        <a href="/en/Slovakia">Slovacia</a>,
  345.        <a href="/en/Hungary">Ungaria</a>,
  346.        <a href="/en/Croatia">Croația</a>,
  347.        <a href="/en/Serbia">Serbia</a>,
  348.        <a href="/en/Bulgaria">Bulgaria</a> și
  349.        <a href="/en/Romania">România</a>.
  350.        Through this application, users have access to up-to-date data about water levels and can set personalized alerts for different cities or sectors of the Danube.    </p>
  351. </div>
  352. <!-- SEO Text -->
  353.    <div class="card">
  354.        <p>
  355.            
  356. <h2>Monitor the <strong>Danube River Water Levels</strong> in Real Time with DanubeAlert</h2>
  357. <p>Stay connected to the latest data on <strong>Danube River water levels</strong> with <strong>DanubeAlert</strong>. In the table below, you will find the updated <strong>water levels</strong> for all major cities along the river, giving you reliable information whenever you need it.</p>
  358. <h3><strong>Custom Alerts for Danube River Water Levels</strong></h3>
  359. <p>Need <strong>quick alerts</strong> for changing water levels? <strong>DanubeAlert</strong> allows you to set up <strong>custom water level alerts</strong> for the cities or countries that matter most to you. Whether you're tracking the <strong>Danube water level forecast</strong> or concerned about potential floods, our app keeps you informed.</p>
  360. <h3><strong>Forecast and Detailed Hydrological Data</strong></h3>
  361. <p>If you want to know how the <strong>Danube water levels</strong> are expected to change, the <strong>water level forecast</strong> section of <strong>DanubeAlert</strong> is essential. In addition to daily data, we provide a comprehensive look at long-term trends, giving you insights into how water levels are evolving.</p>
  362. <h3><strong>Why Choose DanubeAlert?</strong></h3>
  363. <p>With <strong>DanubeAlert</strong>, you get direct access to the latest <strong>hydrological data</strong> for the Danube River, no matter where you are. Our app is perfect for anyone who needs <strong>real-time water level monitoring</strong>, whether you're involved in transport, agriculture, or just want to stay informed.</p>
  364. <p>Stay prepared for any changes in water levels with <strong>DanubeAlert</strong> – your reliable app for <strong>Danube River monitoring</strong>.</p>
  365.  
  366.        </p>
  367.    </div>
  368.  
  369. <!-- Selectare țară -->
  370. <div class="card">
  371.    <label for="country-select">Select Country:</label> <!-- Folosește traducerea -->
  372.    <select id="country-select" onchange="updateTable()">
  373.        <option value="">All Countries</option> <!-- Folosește traducerea -->
  374.                    <option value="Austria" >
  375.                Austria            </option>
  376.                    <option value="Slovakia" >
  377.                Slovakia            </option>
  378.                    <option value="Hungary" >
  379.                Hungary            </option>
  380.                    <option value="Croatia" >
  381.                Croatia            </option>
  382.                    <option value="Serbia" >
  383.                Serbia            </option>
  384.                    <option value="Bulgaria" >
  385.                Bulgaria            </option>
  386.                    <option value="Romania" >
  387.                Romania            </option>
  388.            </select>
  389.  
  390.    </div>
  391.  
  392. <div class="table-responsive card">
  393.            <table id="data-table">
  394.            <thead>
  395.                <tr>
  396.                    <th>City</th>
  397.                    <th>Fairway</th>
  398.                    <th>Rkm</th>
  399.                    <th>Date and Time</th>
  400.                    <th>Water Level (cm)</th>
  401.                    <th>Country</th>
  402.                </tr>
  403.            </thead>
  404.            <tbody>
  405.                                    <tr>
  406.                        <td><a href="/en/history/Achleiten">Achleiten</a></td>
  407.                        <td>Donau</td>
  408.                        <td>2223</td>
  409.                        <td>2024-10-30 06:15:00</td>
  410.                        <td>283</td>
  411.                        <td>Austria</td>
  412.                    </tr>
  413.                                    <tr>
  414.                        <td><a href="/en/history/Duernstein">Duernstein</a></td>
  415.                        <td>Donau</td>
  416.                        <td>2009</td>
  417.                        <td>2024-10-30 06:15:00</td>
  418.                        <td>330</td>
  419.                        <td>Austria</td>
  420.                    </tr>
  421.                                    <tr>
  422.                        <td><a href="/en/history/Grein">Grein</a></td>
  423.                        <td>Donau</td>
  424.                        <td>2079</td>
  425.                        <td>2024-10-30 06:15:00</td>
  426.                        <td>726</td>
  427.                        <td>Austria</td>
  428.                    </tr>
  429.                                    <tr>
  430.                        <td><a href="/en/history/Kienstock">Kienstock</a></td>
  431.                        <td>Donau</td>
  432.                        <td>2015</td>
  433.                        <td>2024-10-30 06:15:00</td>
  434.                        <td>244</td>
  435.                        <td>Austria</td>
  436.                    </tr>
  437.                                    <tr>
  438.                        <td><a href="/en/history/Korneuburg">Korneuburg</a></td>
  439.                        <td>Donau</td>
  440.                        <td>1941</td>
  441.                        <td>2024-10-30 06:15:00</td>
  442.                        <td>253</td>
  443.                        <td>Austria</td>
  444.                    </tr>
  445.                                    <tr>
  446.                        <td><a href="/en/history/Mauthausen">Mauthausen</a></td>
  447.                        <td>Donau</td>
  448.                        <td>2110</td>
  449.                        <td>2024-10-30 06:15:00</td>
  450.                        <td>431</td>
  451.                        <td>Austria</td>
  452.                    </tr>
  453.                                    <tr>
  454.                        <td><a href="/en/history/Schwedenbruecke">Schwedenbruecke</a></td>
  455.                        <td>Wiener Donaukanal</td>
  456.                        <td>6</td>
  457.                        <td>2024-10-30 06:15:00</td>
  458.                        <td>229</td>
  459.                        <td>Austria</td>
  460.                    </tr>
  461.                                    <tr>
  462.                        <td><a href="/en/history/Thebnerstrassl">Thebnerstrassl</a></td>
  463.                        <td>Donau</td>
  464.                        <td>1879</td>
  465.                        <td>2024-10-30 06:15:00</td>
  466.                        <td>224</td>
  467.                        <td>Austria</td>
  468.                    </tr>
  469.                                    <tr>
  470.                        <td><a href="/en/history/Wildungsmauer">Wildungsmauer</a></td>
  471.                        <td>Donau</td>
  472.                        <td>1894</td>
  473.                        <td>2024-10-30 06:15:00</td>
  474.                        <td>232</td>
  475.                        <td>Austria</td>
  476.                    </tr>
  477.                                    <tr>
  478.                        <td><a href="/en/history/Wilhering">Wilhering</a></td>
  479.                        <td>Donau</td>
  480.                        <td>2144</td>
  481.                        <td>2024-10-30 06:15:00</td>
  482.                        <td>296</td>
  483.                        <td>Austria</td>
  484.                    </tr>
  485.                                    <tr>
  486.                        <td><a href="/en/history/AHS-BAJKAL">AHS BAJKAL</a></td>
  487.                        <td>Дунав (Bulgaria)</td>
  488.                        <td>640</td>
  489.                        <td>2024-10-30 06:15:00</td>
  490.                        <td>28</td>
  491.                        <td>Bulgaria</td>
  492.                    </tr>
  493.                                    <tr>
  494.                        <td><a href="/en/history/AHS-GOMOTARTSI">AHS GOMOTARTSI</a></td>
  495.                        <td>Дунав (Bulgaria)</td>
  496.                        <td>819</td>
  497.                        <td>2024-10-30 06:00:00</td>
  498.                        <td>117</td>
  499.                        <td>Bulgaria</td>
  500.                    </tr>
  501.                                    <tr>
  502.                        <td><a href="/en/history/AHS-KOZLODUJ">AHS KOZLODUJ</a></td>
  503.                        <td>Дунав (Bulgaria)</td>
  504.                        <td>703</td>
  505.                        <td>2024-10-30 06:00:00</td>
  506.                        <td>62</td>
  507.                        <td>Bulgaria</td>
  508.                    </tr>
  509.                                    <tr>
  510.                        <td><a href="/en/history/AHS-MALAK-PRESLAVETS">AHS MALAK PRESLAVETS</a></td>
  511.                        <td>Дунав (Bulgaria)</td>
  512.                        <td>413</td>
  513.                        <td>2024-10-30 04:45:00</td>
  514.                        <td>64</td>
  515.                        <td>Bulgaria</td>
  516.                    </tr>
  517.                                    <tr>
  518.                        <td><a href="/en/history/AHS-NOVO-SELO">AHS NOVO SELO</a></td>
  519.                        <td>Дунав (Bulgaria)</td>
  520.                        <td>833</td>
  521.                        <td>2024-10-30 05:45:00</td>
  522.                        <td>224</td>
  523.                        <td>Bulgaria</td>
  524.                    </tr>
  525.                                    <tr>
  526.                        <td><a href="/en/history/AHS-ORYAHOVO">AHS ORYAHOVO</a></td>
  527.                        <td>Дунав (Bulgaria)</td>
  528.                        <td>678</td>
  529.                        <td>2024-10-30 06:00:00</td>
  530.                        <td>183</td>
  531.                        <td>Bulgaria</td>
  532.                    </tr>
  533.                                    <tr>
  534.                        <td><a href="/en/history/AHS-RUSE-GURGUE-BRIDGE">AHS RUSE-GURGUE BRIDGE</a></td>
  535.                        <td>Дунав (Bulgaria)</td>
  536.                        <td>488</td>
  537.                        <td>2024-10-30 05:30:00</td>
  538.                        <td>217</td>
  539.                        <td>Bulgaria</td>
  540.                    </tr>
  541.                                    <tr>
  542.                        <td><a href="/en/history/AHS-RYAHOVO">AHS RYAHOVO</a></td>
  543.                        <td>Дунав (Bulgaria)</td>
  544.                        <td>465</td>
  545.                        <td>2024-10-30 05:30:00</td>
  546.                        <td>0</td>
  547.                        <td>Bulgaria</td>
  548.                    </tr>
  549.                                    <tr>
  550.                        <td><a href="/en/history/AHS-SILISTRA">AHS SILISTRA</a></td>
  551.                        <td>Дунав (Bulgaria)</td>
  552.                        <td>375</td>
  553.                        <td>2024-10-30 06:00:00</td>
  554.                        <td>-181</td>
  555.                        <td>Bulgaria</td>
  556.                    </tr>
  557.                                    <tr>
  558.                        <td><a href="/en/history/AHS-SVISHTOV">AHS SVISHTOV</a></td>
  559.                        <td>Дунав (Bulgaria)</td>
  560.                        <td>554</td>
  561.                        <td>2024-10-30 05:30:00</td>
  562.                        <td>215</td>
  563.                        <td>Bulgaria</td>
  564.                    </tr>
  565.                                    <tr>
  566.                        <td><a href="/en/history/AHS-VIDIN-KALAFAT-BRIDGE">AHS VIDIN-KALAFAT BRIDGE</a></td>
  567.                        <td>Дунав (Bulgaria)</td>
  568.                        <td>796</td>
  569.                        <td>2024-10-30 06:00:00</td>
  570.                        <td>266</td>
  571.                        <td>Bulgaria</td>
  572.                    </tr>
  573.                                    <tr>
  574.                        <td><a href="/en/history/AHS-ZAGRAZHDEN">AHS ZAGRAZHDEN</a></td>
  575.                        <td>Дунав (Bulgaria)</td>
  576.                        <td>625</td>
  577.                        <td>2024-10-30 05:30:00</td>
  578.                        <td>45</td>
  579.                        <td>Bulgaria</td>
  580.                    </tr>
  581.                                    <tr>
  582.                        <td><a href="/en/history/GAUGE-LOM">GAUGE LOM</a></td>
  583.                        <td>Дунав (Bulgaria)</td>
  584.                        <td>743</td>
  585.                        <td>2024-10-30 05:09:00</td>
  586.                        <td>289</td>
  587.                        <td>Bulgaria</td>
  588.                    </tr>
  589.                                    <tr>
  590.                        <td><a href="/en/history/GAUGE-NOVO-SELO">GAUGE NOVO SELO</a></td>
  591.                        <td>Дунав (Bulgaria)</td>
  592.                        <td>833</td>
  593.                        <td>2024-10-30 05:06:00</td>
  594.                        <td>222</td>
  595.                        <td>Bulgaria</td>
  596.                    </tr>
  597.                                    <tr>
  598.                        <td><a href="/en/history/GAUGE-ORYAHOVO">GAUGE ORYAHOVO</a></td>
  599.                        <td>Дунав (Bulgaria)</td>
  600.                        <td>678</td>
  601.                        <td>2024-10-30 05:12:00</td>
  602.                        <td>180</td>
  603.                        <td>Bulgaria</td>
  604.                    </tr>
  605.                                    <tr>
  606.                        <td><a href="/en/history/GAUGE-RUSE">GAUGE RUSE</a></td>
  607.                        <td>Дунав (Bulgaria)</td>
  608.                        <td>495</td>
  609.                        <td>2024-10-30 05:50:00</td>
  610.                        <td>212</td>
  611.                        <td>Bulgaria</td>
  612.                    </tr>
  613.                                    <tr>
  614.                        <td><a href="/en/history/GAUGE-SILISTRA">GAUGE SILISTRA</a></td>
  615.                        <td>Дунав (Bulgaria)</td>
  616.                        <td>375</td>
  617.                        <td>2024-10-30 04:58:00</td>
  618.                        <td>247</td>
  619.                        <td>Bulgaria</td>
  620.                    </tr>
  621.                                    <tr>
  622.                        <td><a href="/en/history/GAUGE-SVISHTOV">GAUGE SVISHTOV</a></td>
  623.                        <td>Дунав (Bulgaria)</td>
  624.                        <td>554</td>
  625.                        <td>2024-10-30 05:01:00</td>
  626.                        <td>217</td>
  627.                        <td>Bulgaria</td>
  628.                    </tr>
  629.                                    <tr>
  630.                        <td><a href="/en/history/Vodomjer-Batina">Vodomjer Batina</a></td>
  631.                        <td>Dunav</td>
  632.                        <td>1424</td>
  633.                        <td>2024-10-17 22:00:00</td>
  634.                        <td>379</td>
  635.                        <td>Croatia</td>
  636.                    </tr>
  637.                                    <tr>
  638.                        <td><a href="/en/history/Vodomjer-Belisce">Vodomjer Belisce</a></td>
  639.                        <td>Drava</td>
  640.                        <td>53</td>
  641.                        <td>2024-10-17 22:00:00</td>
  642.                        <td>344</td>
  643.                        <td>Croatia</td>
  644.                    </tr>
  645.                                    <tr>
  646.                        <td><a href="/en/history/Vodomjer-Crnac">Vodomjer Crnac</a></td>
  647.                        <td>Sava (Croatia)</td>
  648.                        <td>588</td>
  649.                        <td>2024-10-17 22:00:00</td>
  650.                        <td>252</td>
  651.                        <td>Croatia</td>
  652.                    </tr>
  653.                                    <tr>
  654.                        <td><a href="/en/history/Vodomjer-Dalj">Vodomjer Dalj</a></td>
  655.                        <td>Dunav</td>
  656.                        <td>1354</td>
  657.                        <td>2024-10-17 22:00:00</td>
  658.                        <td>610</td>
  659.                        <td>Croatia</td>
  660.                    </tr>
  661.                                    <tr>
  662.                        <td><a href="/en/history/Vodomjer-Davor">Vodomjer Davor</a></td>
  663.                        <td>Sava (Croatia)</td>
  664.                        <td>423</td>
  665.                        <td>2024-10-13 22:00:00</td>
  666.                        <td>288</td>
  667.                        <td>Croatia</td>
  668.                    </tr>
  669.                                    <tr>
  670.                        <td><a href="/en/history/Vodomjer-Donji-Miholjac">Vodomjer Donji Miholjac</a></td>
  671.                        <td>Drava</td>
  672.                        <td>80</td>
  673.                        <td>2024-10-17 22:00:00</td>
  674.                        <td>223</td>
  675.                        <td>Croatia</td>
  676.                    </tr>
  677.                                    <tr>
  678.                        <td><a href="/en/history/Vodomjer-Gunja">Vodomjer Gunja</a></td>
  679.                        <td>Sava (Croatia)</td>
  680.                        <td>228</td>
  681.                        <td>2024-10-17 22:00:00</td>
  682.                        <td>513</td>
  683.                        <td>Croatia</td>
  684.                    </tr>
  685.                                    <tr>
  686.                        <td><a href="/en/history/Vodomjer-Gusce">Vodomjer Gusce</a></td>
  687.                        <td>Sava (Croatia)</td>
  688.                        <td>572</td>
  689.                        <td>2024-10-17 22:00:00</td>
  690.                        <td>425</td>
  691.                        <td>Croatia</td>
  692.                    </tr>
  693.                                    <tr>
  694.                        <td><a href="/en/history/Vodomjer-Jasenovac">Vodomjer Jasenovac</a></td>
  695.                        <td>Sava (Croatia)</td>
  696.                        <td>516</td>
  697.                        <td>2024-10-17 22:00:00</td>
  698.                        <td>467</td>
  699.                        <td>Croatia</td>
  700.                    </tr>
  701.                                    <tr>
  702.                        <td><a href="/en/history/Vodomjer-Mohovo">Vodomjer Mohovo</a></td>
  703.                        <td>Dunav</td>
  704.                        <td>1311</td>
  705.                        <td>2024-10-17 22:00:00</td>
  706.                        <td>501</td>
  707.                        <td>Croatia</td>
  708.                    </tr>
  709.                                    <tr>
  710.                        <td><a href="/en/history/Vodomjer-Osijek">Vodomjer Osijek</a></td>
  711.                        <td>Drava</td>
  712.                        <td>19</td>
  713.                        <td>2024-10-17 22:00:00</td>
  714.                        <td>241</td>
  715.                        <td>Croatia</td>
  716.                    </tr>
  717.                                    <tr>
  718.                        <td><a href="/en/history/Vodomjer-Petres">Vodomjer Petres</a></td>
  719.                        <td>Dunav</td>
  720.                        <td>1393</td>
  721.                        <td>2024-10-17 22:00:00</td>
  722.                        <td>559</td>
  723.                        <td>Croatia</td>
  724.                    </tr>
  725.                                    <tr>
  726.                        <td><a href="/en/history/Vodomjer-Siga">Vodomjer Siga</a></td>
  727.                        <td>Dunav</td>
  728.                        <td>1412</td>
  729.                        <td>2024-10-17 22:00:00</td>
  730.                        <td>504</td>
  731.                        <td>Croatia</td>
  732.                    </tr>
  733.                                    <tr>
  734.                        <td><a href="/en/history/Vodomjer-Slavonski-Brod">Vodomjer Slavonski Brod</a></td>
  735.                        <td>Sava (Croatia)</td>
  736.                        <td>371</td>
  737.                        <td>2024-10-17 22:00:00</td>
  738.                        <td>384</td>
  739.                        <td>Croatia</td>
  740.                    </tr>
  741.                                    <tr>
  742.                        <td><a href="/en/history/Vodomjer-Slavonski-Samac">Vodomjer Slavonski Samac</a></td>
  743.                        <td>Sava (Croatia)</td>
  744.                        <td>314</td>
  745.                        <td>2024-10-17 22:00:00</td>
  746.                        <td>183</td>
  747.                        <td>Croatia</td>
  748.                    </tr>
  749.                                    <tr>
  750.                        <td><a href="/en/history/Vodomjer-Sotiin">Vodomjer Sotiin</a></td>
  751.                        <td>Dunav</td>
  752.                        <td>1322</td>
  753.                        <td>2024-10-17 22:00:00</td>
  754.                        <td>558</td>
  755.                        <td>Croatia</td>
  756.                    </tr>
  757.                                    <tr>
  758.                        <td><a href="/en/history/Vodomjer-Vukovar">Vodomjer Vukovar</a></td>
  759.                        <td>Dunav</td>
  760.                        <td>1333</td>
  761.                        <td>2024-10-17 22:00:00</td>
  762.                        <td>405</td>
  763.                        <td>Croatia</td>
  764.                    </tr>
  765.                                    <tr>
  766.                        <td><a href="/en/history/ADONY">ADONY</a></td>
  767.                        <td>Duna</td>
  768.                        <td>1597</td>
  769.                        <td>2024-10-30 06:00:00</td>
  770.                        <td>94</td>
  771.                        <td>Hungary</td>
  772.                    </tr>
  773.                                    <tr>
  774.                        <td><a href="/en/history/BAJA">BAJA</a></td>
  775.                        <td>Duna</td>
  776.                        <td>1478</td>
  777.                        <td>2024-10-30 06:00:00</td>
  778.                        <td>272</td>
  779.                        <td>Hungary</td>
  780.                    </tr>
  781.                                    <tr>
  782.                        <td><a href="/en/history/BP-LANCHID">BP-LANCHID</a></td>
  783.                        <td>Duna</td>
  784.                        <td>1647</td>
  785.                        <td>2024-10-30 06:00:00</td>
  786.                        <td>116</td>
  787.                        <td>Hungary</td>
  788.                    </tr>
  789.                                    <tr>
  790.                        <td><a href="/en/history/BUDAFOK">BUDAFOK</a></td>
  791.                        <td>Duna</td>
  792.                        <td>1636</td>
  793.                        <td>2024-10-30 06:00:00</td>
  794.                        <td>131</td>
  795.                        <td>Hungary</td>
  796.                    </tr>
  797.                                    <tr>
  798.                        <td><a href="/en/history/BUDAPEST">BUDAPEST</a></td>
  799.                        <td>Duna</td>
  800.                        <td>1646</td>
  801.                        <td>2024-10-30 06:00:00</td>
  802.                        <td>202</td>
  803.                        <td>Hungary</td>
  804.                    </tr>
  805.                                    <tr>
  806.                        <td><a href="/en/history/DOMBORI">DOMBORI</a></td>
  807.                        <td>Duna</td>
  808.                        <td>1506</td>
  809.                        <td>2024-10-30 06:00:00</td>
  810.                        <td>171</td>
  811.                        <td>Hungary</td>
  812.                    </tr>
  813.                                    <tr>
  814.                        <td><a href="/en/history/DUNAFOLDVAR">DUNAFOLDVAR</a></td>
  815.                        <td>Duna</td>
  816.                        <td>1560</td>
  817.                        <td>2024-10-30 06:00:00</td>
  818.                        <td>-36</td>
  819.                        <td>Hungary</td>
  820.                    </tr>
  821.                                    <tr>
  822.                        <td><a href="/en/history/DUNASZEKCSO">DUNASZEKCSO</a></td>
  823.                        <td>Duna</td>
  824.                        <td>1460</td>
  825.                        <td>2024-10-30 06:00:00</td>
  826.                        <td>292</td>
  827.                        <td>Hungary</td>
  828.                    </tr>
  829.                                    <tr>
  830.                        <td><a href="/en/history/DUNAUJVAROS">DUNAUJVAROS</a></td>
  831.                        <td>Duna</td>
  832.                        <td>1580</td>
  833.                        <td>2024-10-30 06:00:00</td>
  834.                        <td>65</td>
  835.                        <td>Hungary</td>
  836.                    </tr>
  837.                                    <tr>
  838.                        <td><a href="/en/history/ERCSI">ERCSI</a></td>
  839.                        <td>Duna</td>
  840.                        <td>1613</td>
  841.                        <td>2024-10-30 06:00:00</td>
  842.                        <td>76</td>
  843.                        <td>Hungary</td>
  844.                    </tr>
  845.                                    <tr>
  846.                        <td><a href="/en/history/ESZTERGOM">ESZTERGOM</a></td>
  847.                        <td>Duna</td>
  848.                        <td>1718</td>
  849.                        <td>2024-10-30 06:00:00</td>
  850.                        <td>142</td>
  851.                        <td>Hungary</td>
  852.                    </tr>
  853.                                    <tr>
  854.                        <td><a href="/en/history/GOD">GOD</a></td>
  855.                        <td>Duna</td>
  856.                        <td>1671</td>
  857.                        <td>2024-10-30 06:00:00</td>
  858.                        <td>124</td>
  859.                        <td>Hungary</td>
  860.                    </tr>
  861.                                    <tr>
  862.                        <td><a href="/en/history/GONYU">GONYU</a></td>
  863.                        <td>Duna</td>
  864.                        <td>1790</td>
  865.                        <td>2024-10-30 06:00:00</td>
  866.                        <td>116</td>
  867.                        <td>Hungary</td>
  868.                    </tr>
  869.                                    <tr>
  870.                        <td><a href="/en/history/KOMAROM">KOMAROM</a></td>
  871.                        <td>Duna</td>
  872.                        <td>1768</td>
  873.                        <td>2024-10-30 06:00:00</td>
  874.                        <td>163</td>
  875.                        <td>Hungary</td>
  876.                    </tr>
  877.                                    <tr>
  878.                        <td><a href="/en/history/MOHACS">MOHACS</a></td>
  879.                        <td>Duna</td>
  880.                        <td>1446</td>
  881.                        <td>2024-10-30 06:00:00</td>
  882.                        <td>311</td>
  883.                        <td>Hungary</td>
  884.                    </tr>
  885.                                    <tr>
  886.                        <td><a href="/en/history/NAGYBAJCS">NAGYBAJCS</a></td>
  887.                        <td>Duna</td>
  888.                        <td>1801</td>
  889.                        <td>2024-10-30 06:00:00</td>
  890.                        <td>166</td>
  891.                        <td>Hungary</td>
  892.                    </tr>
  893.                                    <tr>
  894.                        <td><a href="/en/history/NAGYMAROS">NAGYMAROS</a></td>
  895.                        <td>Duna</td>
  896.                        <td>1694</td>
  897.                        <td>2024-10-30 06:00:00</td>
  898.                        <td>81</td>
  899.                        <td>Hungary</td>
  900.                    </tr>
  901.                                    <tr>
  902.                        <td><a href="/en/history/OBUDA">OBUDA</a></td>
  903.                        <td>Duna</td>
  904.                        <td>1654</td>
  905.                        <td>2024-10-30 06:00:00</td>
  906.                        <td>227</td>
  907.                        <td>Hungary</td>
  908.                    </tr>
  909.                                    <tr>
  910.                        <td><a href="/en/history/PAKS">PAKS</a></td>
  911.                        <td>Duna</td>
  912.                        <td>1531</td>
  913.                        <td>2024-10-30 06:00:00</td>
  914.                        <td>115</td>
  915.                        <td>Hungary</td>
  916.                    </tr>
  917.                                    <tr>
  918.                        <td><a href="/en/history/SZOB">SZOB</a></td>
  919.                        <td>Duna</td>
  920.                        <td>1707</td>
  921.                        <td>2024-10-30 06:00:00</td>
  922.                        <td>65</td>
  923.                        <td>Hungary</td>
  924.                    </tr>
  925.                                    <tr>
  926.                        <td><a href="/en/history/VAC">VAC</a></td>
  927.                        <td>Duna</td>
  928.                        <td>1679</td>
  929.                        <td>2024-10-30 06:00:00</td>
  930.                        <td>99</td>
  931.                        <td>Hungary</td>
  932.                    </tr>
  933.                                    <tr>
  934.                        <td><a href="/en/history/Agigea">Agigea</a></td>
  935.                        <td>Canal Dunăre-Marea Neagră</td>
  936.                        <td>1</td>
  937.                        <td>2024-10-30 06:00:00</td>
  938.                        <td>715</td>
  939.                        <td>Romania</td>
  940.                    </tr>
  941.                                    <tr>
  942.                        <td><a href="/en/history/Bazia%C5%9F">Baziaş</a></td>
  943.                        <td>Dunărea</td>
  944.                        <td>1072</td>
  945.                        <td>2024-10-30 05:00:00</td>
  946.                        <td>566</td>
  947.                        <td>Romania</td>
  948.                    </tr>
  949.                                    <tr>
  950.                        <td><a href="/en/history/Bechet">Bechet</a></td>
  951.                        <td>Dunărea</td>
  952.                        <td>679</td>
  953.                        <td>2024-10-30 05:00:00</td>
  954.                        <td>179</td>
  955.                        <td>Romania</td>
  956.                    </tr>
  957.                                    <tr>
  958.                        <td><a href="/en/history/Br%C4%83ila">Brăila</a></td>
  959.                        <td>Dunărea</td>
  960.                        <td>169</td>
  961.                        <td>2024-10-30 05:00:00</td>
  962.                        <td>273</td>
  963.                        <td>Romania</td>
  964.                    </tr>
  965.                                    <tr>
  966.                        <td><a href="/en/history/Calafat">Calafat</a></td>
  967.                        <td>Dunărea</td>
  968.                        <td>795</td>
  969.                        <td>2024-10-30 05:00:00</td>
  970.                        <td>116</td>
  971.                        <td>Romania</td>
  972.                    </tr>
  973.                                    <tr>
  974.                        <td><a href="/en/history/C%C4%83l%C4%83ra%C5%9Fi">Călăraşi</a></td>
  975.                        <td>Borcea</td>
  976.                        <td>94</td>
  977.                        <td>2024-10-30 05:00:00</td>
  978.                        <td>148</td>
  979.                        <td>Romania</td>
  980.                    </tr>
  981.                                    <tr>
  982.                        <td><a href="/en/history/Cernavod%C4%83">Cernavodă</a></td>
  983.                        <td>Dunărea</td>
  984.                        <td>298</td>
  985.                        <td>2024-10-30 05:00:00</td>
  986.                        <td>167</td>
  987.                        <td>Romania</td>
  988.                    </tr>
  989.                                    <tr>
  990.                        <td><a href="/en/history/Cernavod%C4%83-Canal">Cernavodă Canal</a></td>
  991.                        <td>Canal Dunăre-Marea Neagră</td>
  992.                        <td>60</td>
  993.                        <td>2024-10-30 06:00:00</td>
  994.                        <td>598</td>
  995.                        <td>Romania</td>
  996.                    </tr>
  997.                                    <tr>
  998.                        <td><a href="/en/history/Cernavod%C4%83-SPC-Aval">Cernavodă SPC Aval</a></td>
  999.                        <td>Canal Dunăre-Marea Neagră</td>
  1000.                        <td>59</td>
  1001.                        <td>2024-10-30 06:00:00</td>
  1002.                        <td>724</td>
  1003.                        <td>Romania</td>
  1004.                    </tr>
  1005.                                    <tr>
  1006.                        <td><a href="/en/history/Cetate">Cetate</a></td>
  1007.                        <td>Dunărea</td>
  1008.                        <td>811</td>
  1009.                        <td>2024-10-30 05:00:00</td>
  1010.                        <td>180</td>
  1011.                        <td>Romania</td>
  1012.                    </tr>
  1013.                                    <tr>
  1014.                        <td><a href="/en/history/Corabia">Corabia</a></td>
  1015.                        <td>Dunărea</td>
  1016.                        <td>630</td>
  1017.                        <td>2024-10-30 05:00:00</td>
  1018.                        <td>126</td>
  1019.                        <td>Romania</td>
  1020.                    </tr>
  1021.                                    <tr>
  1022.                        <td><a href="/en/history/Drencova">Drencova</a></td>
  1023.                        <td>Dunărea</td>
  1024.                        <td>1015</td>
  1025.                        <td>2024-10-30 05:00:00</td>
  1026.                        <td>967</td>
  1027.                        <td>Romania</td>
  1028.                    </tr>
  1029.                                    <tr>
  1030.                        <td><a href="/en/history/Drobeta-Turnu-Severin">Drobeta Turnu Severin</a></td>
  1031.                        <td>Dunărea</td>
  1032.                        <td>931</td>
  1033.                        <td>2024-10-30 05:00:00</td>
  1034.                        <td>720</td>
  1035.                        <td>Romania</td>
  1036.                    </tr>
  1037.                                    <tr>
  1038.                        <td><a href="/en/history/Gala%C5%A3i">Galaţi</a></td>
  1039.                        <td>Dunărea</td>
  1040.                        <td>150</td>
  1041.                        <td>2024-10-30 05:00:00</td>
  1042.                        <td>270</td>
  1043.                        <td>Romania</td>
  1044.                    </tr>
  1045.                                    <tr>
  1046.                        <td><a href="/en/history/Giurgiu">Giurgiu</a></td>
  1047.                        <td>Dunărea</td>
  1048.                        <td>493</td>
  1049.                        <td>2024-10-30 05:00:00</td>
  1050.                        <td>143</td>
  1051.                        <td>Romania</td>
  1052.                    </tr>
  1053.                                    <tr>
  1054.                        <td><a href="/en/history/Gruia">Gruia</a></td>
  1055.                        <td>Dunărea</td>
  1056.                        <td>851</td>
  1057.                        <td>2024-10-30 05:00:00</td>
  1058.                        <td>152</td>
  1059.                        <td>Romania</td>
  1060.                    </tr>
  1061.                                    <tr>
  1062.                        <td><a href="/en/history/H%C3%A2r%C5%9Fova">Hârşova</a></td>
  1063.                        <td>Dunărea</td>
  1064.                        <td>252</td>
  1065.                        <td>2024-10-30 05:00:00</td>
  1066.                        <td>236</td>
  1067.                        <td>Romania</td>
  1068.                    </tr>
  1069.                                    <tr>
  1070.                        <td><a href="/en/history/Isaccea">Isaccea</a></td>
  1071.                        <td>Dunărea</td>
  1072.                        <td>103</td>
  1073.                        <td>2024-10-30 05:00:00</td>
  1074.                        <td>207</td>
  1075.                        <td>Romania</td>
  1076.                    </tr>
  1077.                                    <tr>
  1078.                        <td><a href="/en/history/Lumini%C5%A3a">Luminiţa</a></td>
  1079.                        <td>Canal Luminița</td>
  1080.                        <td>4</td>
  1081.                        <td>2024-10-30 06:00:00</td>
  1082.                        <td>205</td>
  1083.                        <td>Romania</td>
  1084.                    </tr>
  1085.                                    <tr>
  1086.                        <td><a href="/en/history/Medgidia">Medgidia</a></td>
  1087.                        <td>Canal Dunăre-Marea Neagră</td>
  1088.                        <td>37</td>
  1089.                        <td>2024-10-30 06:00:00</td>
  1090.                        <td>722</td>
  1091.                        <td>Romania</td>
  1092.                    </tr>
  1093.                                    <tr>
  1094.                        <td><a href="/en/history/Moldova-Veche">Moldova Veche</a></td>
  1095.                        <td>Dunărea</td>
  1096.                        <td>1048</td>
  1097.                        <td>2024-10-30 05:00:00</td>
  1098.                        <td>706</td>
  1099.                        <td>Romania</td>
  1100.                    </tr>
  1101.                                    <tr>
  1102.                        <td><a href="/en/history/Murfatlar">Murfatlar</a></td>
  1103.                        <td>Canal Dunăre-Marea Neagră</td>
  1104.                        <td>24</td>
  1105.                        <td>2024-10-30 06:00:00</td>
  1106.                        <td>714</td>
  1107.                        <td>Romania</td>
  1108.                    </tr>
  1109.                                    <tr>
  1110.                        <td><a href="/en/history/N%C4%83vodari">Năvodari</a></td>
  1111.                        <td>Canal Poarta Albă-Midia Năvodari</td>
  1112.                        <td>1</td>
  1113.                        <td>2024-10-30 06:00:00</td>
  1114.                        <td>179</td>
  1115.                        <td>Romania</td>
  1116.                    </tr>
  1117.                                    <tr>
  1118.                        <td><a href="/en/history/Olteni%C5%A3a">Olteniţa</a></td>
  1119.                        <td>Dunărea</td>
  1120.                        <td>430</td>
  1121.                        <td>2024-10-30 05:00:00</td>
  1122.                        <td>167</td>
  1123.                        <td>Romania</td>
  1124.                    </tr>
  1125.                                    <tr>
  1126.                        <td><a href="/en/history/Or%C8%99ova">Orșova</a></td>
  1127.                        <td>Dunărea</td>
  1128.                        <td>954</td>
  1129.                        <td>2024-10-30 05:00:00</td>
  1130.                        <td>2505</td>
  1131.                        <td>Romania</td>
  1132.                    </tr>
  1133.                                    <tr>
  1134.                        <td><a href="/en/history/Ovidiu">Ovidiu</a></td>
  1135.                        <td>Canal Poarta Albă-Midia Năvodari</td>
  1136.                        <td>12</td>
  1137.                        <td>2024-10-30 06:00:00</td>
  1138.                        <td>726</td>
  1139.                        <td>Romania</td>
  1140.                    </tr>
  1141.                                    <tr>
  1142.                        <td><a href="/en/history/Rast">Rast</a></td>
  1143.                        <td>Dunărea</td>
  1144.                        <td>738</td>
  1145.                        <td>2024-10-30 05:00:00</td>
  1146.                        <td>162</td>
  1147.                        <td>Romania</td>
  1148.                    </tr>
  1149.                                    <tr>
  1150.                        <td><a href="/en/history/Sulina">Sulina</a></td>
  1151.                        <td>Dunărea</td>
  1152.                        <td>0</td>
  1153.                        <td>2024-10-30 05:00:00</td>
  1154.                        <td>74</td>
  1155.                        <td>Romania</td>
  1156.                    </tr>
  1157.                                    <tr>
  1158.                        <td><a href="/en/history/Tulcea">Tulcea</a></td>
  1159.                        <td>Dunărea</td>
  1160.                        <td>71</td>
  1161.                        <td>2024-10-30 05:00:00</td>
  1162.                        <td>170</td>
  1163.                        <td>Romania</td>
  1164.                    </tr>
  1165.                                    <tr>
  1166.                        <td><a href="/en/history/Turnu-M%C4%83gurele">Turnu Măgurele</a></td>
  1167.                        <td>Dunărea</td>
  1168.                        <td>597</td>
  1169.                        <td>2024-10-30 05:00:00</td>
  1170.                        <td>146</td>
  1171.                        <td>Romania</td>
  1172.                    </tr>
  1173.                                    <tr>
  1174.                        <td><a href="/en/history/Zimnicea">Zimnicea</a></td>
  1175.                        <td>Dunărea</td>
  1176.                        <td>554</td>
  1177.                        <td>2024-10-30 05:00:00</td>
  1178.                        <td>182</td>
  1179.                        <td>Romania</td>
  1180.                    </tr>
  1181.                                    <tr>
  1182.                        <td><a href="/en/history/%D0%90%D0%BF%D0%B0%D1%82%D0%B8%D0%BD">Апатин</a></td>
  1183.                        <td>Дунав</td>
  1184.                        <td>1401</td>
  1185.                        <td>2024-10-29 07:53:00</td>
  1186.                        <td>273</td>
  1187.                        <td>Serbia</td>
  1188.                    </tr>
  1189.                                    <tr>
  1190.                        <td><a href="/en/history/%D0%91%D0%B0%D0%BD%D0%B0%D1%82%D1%81%D0%BA%D0%B0-%D0%9F%D0%B0%D0%BB%D0%B0%D0%BD%D0%BA%D0%B0">Банатска Паланка</a></td>
  1191.                        <td>Дунав</td>
  1192.                        <td>1076</td>
  1193.                        <td>2024-10-29 23:00:00</td>
  1194.                        <td>682</td>
  1195.                        <td>Serbia</td>
  1196.                    </tr>
  1197.                                    <tr>
  1198.                        <td><a href="/en/history/%D0%91%D0%B0%D1%87%D0%BA%D0%B0-%D0%9F%D0%B0%D0%BB%D0%B0%D0%BD%D0%BA%D0%B0">Бачка Паланка</a></td>
  1199.                        <td>Дунав</td>
  1200.                        <td>1298</td>
  1201.                        <td>2024-10-29 07:53:00</td>
  1202.                        <td>256</td>
  1203.                        <td>Serbia</td>
  1204.                    </tr>
  1205.                                    <tr>
  1206.                        <td><a href="/en/history/%D0%91%D0%B5%D0%B7%D0%B4%D0%B0%D0%BD">Бездан</a></td>
  1207.                        <td>Дунав</td>
  1208.                        <td>1425</td>
  1209.                        <td>2024-10-29 23:00:00</td>
  1210.                        <td>175</td>
  1211.                        <td>Serbia</td>
  1212.                    </tr>
  1213.                                    <tr>
  1214.                        <td><a href="/en/history/%D0%91%D0%B5%D1%99%D0%B8%D0%BD">Бељин</a></td>
  1215.                        <td>Сава</td>
  1216.                        <td>67</td>
  1217.                        <td>2024-10-09 07:09:00</td>
  1218.                        <td>1192</td>
  1219.                        <td>Serbia</td>
  1220.                    </tr>
  1221.                                    <tr>
  1222.                        <td><a href="/en/history/%D0%91%D0%B5%D0%BE%D0%B3%D1%80%D0%B0%D0%B4">Београд</a></td>
  1223.                        <td>Сава</td>
  1224.                        <td>0</td>
  1225.                        <td>2024-10-29 23:30:00</td>
  1226.                        <td>239</td>
  1227.                        <td>Serbia</td>
  1228.                    </tr>
  1229.                                    <tr>
  1230.                        <td><a href="/en/history/%D0%91%D0%BE%D0%B3%D0%BE%D1%98%D0%B5%D0%B2%D0%BE">Богојево</a></td>
  1231.                        <td>Дунав</td>
  1232.                        <td>1367</td>
  1233.                        <td>2024-10-29 23:00:00</td>
  1234.                        <td>248</td>
  1235.                        <td>Serbia</td>
  1236.                    </tr>
  1237.                                    <tr>
  1238.                        <td><a href="/en/history/%D0%91%D1%80%D0%B0%D0%BD%D0%B0-%D0%9D%D0%BE%D0%B2%D0%B8-%D0%91%D0%B5%D1%87%D0%B5%D1%98_%D0%93%D0%BE%D1%80%D1%9A%D0%B0-%D0%B2%D0%BE%D0%B4%D0%B0">Брана Нови Бечеј_Горња вода</a></td>
  1239.                        <td>Тиса</td>
  1240.                        <td>63</td>
  1241.                        <td>2024-10-30 00:00:00</td>
  1242.                        <td>428</td>
  1243.                        <td>Serbia</td>
  1244.                    </tr>
  1245.                                    <tr>
  1246.                        <td><a href="/en/history/%D0%92%D0%B5%D0%BB%D0%B8%D0%BA%D0%BE-%D0%93%D1%80%D0%B0%D0%B4%D0%B8%D1%88%D1%82%D0%B5">Велико Градиште</a></td>
  1247.                        <td>Дунав</td>
  1248.                        <td>1059</td>
  1249.                        <td>2024-10-29 07:53:00</td>
  1250.                        <td>745</td>
  1251.                        <td>Serbia</td>
  1252.                    </tr>
  1253.                                    <tr>
  1254.                        <td><a href="/en/history/%D0%97%D0%B5%D0%BC%D1%83%D0%BD">Земун</a></td>
  1255.                        <td>Дунав</td>
  1256.                        <td>1173</td>
  1257.                        <td>2024-10-29 23:00:00</td>
  1258.                        <td>278</td>
  1259.                        <td>Serbia</td>
  1260.                    </tr>
  1261.                                    <tr>
  1262.                        <td><a href="/en/history/%D0%88%D0%B0%D0%BC%D0%B5%D0%BD%D0%B0">Јамена</a></td>
  1263.                        <td>Сава</td>
  1264.                        <td>204</td>
  1265.                        <td>2024-10-30 00:30:00</td>
  1266.                        <td>348</td>
  1267.                        <td>Serbia</td>
  1268.                    </tr>
  1269.                                    <tr>
  1270.                        <td><a href="/en/history/%D0%9D%D0%BE%D0%B2%D0%B8-%D0%91%D0%B5%D1%87%D0%B5%D1%98">Нови Бечеј</a></td>
  1271.                        <td>Тиса</td>
  1272.                        <td>65</td>
  1273.                        <td>2024-10-29 07:53:00</td>
  1274.                        <td>333</td>
  1275.                        <td>Serbia</td>
  1276.                    </tr>
  1277.                                    <tr>
  1278.                        <td><a href="/en/history/%D0%9D%D0%BE%D0%B2%D0%B8-%D0%9A%D0%BD%D0%B5%D0%B6%D0%B5%D0%B2%D0%B0%D1%86">Нови Кнежевац</a></td>
  1279.                        <td>Тиса</td>
  1280.                        <td>144</td>
  1281.                        <td>2024-10-29 23:00:00</td>
  1282.                        <td>174</td>
  1283.                        <td>Serbia</td>
  1284.                    </tr>
  1285.                                    <tr>
  1286.                        <td><a href="/en/history/%D0%9D%D0%BE%D0%B2%D0%B8-%D0%A1%D0%B0%D0%B4">Нови Сад</a></td>
  1287.                        <td>Дунав</td>
  1288.                        <td>1255</td>
  1289.                        <td>2024-10-29 23:00:00</td>
  1290.                        <td>225</td>
  1291.                        <td>Serbia</td>
  1292.                    </tr>
  1293.                                    <tr>
  1294.                        <td><a href="/en/history/%D0%9F%D0%B0%D0%BD%D1%87%D0%B5%D0%B2%D0%BE">Панчево</a></td>
  1295.                        <td>Дунав</td>
  1296.                        <td>1154</td>
  1297.                        <td>2024-10-29 23:00:00</td>
  1298.                        <td>306</td>
  1299.                        <td>Serbia</td>
  1300.                    </tr>
  1301.                                    <tr>
  1302.                        <td><a href="/en/history/%D0%9F%D1%80%D0%B0%D1%85%D0%BE%D0%B2%D0%BE">Прахово</a></td>
  1303.                        <td>Дунав</td>
  1304.                        <td>859</td>
  1305.                        <td>2024-10-29 07:53:00</td>
  1306.                        <td>190</td>
  1307.                        <td>Serbia</td>
  1308.                    </tr>
  1309.                                    <tr>
  1310.                        <td><a href="/en/history/%D0%A1%D0%B5%D0%BD%D1%82%D0%B0">Сента</a></td>
  1311.                        <td>Тиса</td>
  1312.                        <td>123</td>
  1313.                        <td>2024-10-29 23:00:00</td>
  1314.                        <td>246</td>
  1315.                        <td>Serbia</td>
  1316.                    </tr>
  1317.                                    <tr>
  1318.                        <td><a href="/en/history/%D0%A1%D0%BB%D0%B0%D0%BD%D0%BA%D0%B0%D0%BC%D0%B5%D0%BD">Сланкамен</a></td>
  1319.                        <td>Дунав</td>
  1320.                        <td>1216</td>
  1321.                        <td>2024-10-29 07:53:00</td>
  1322.                        <td>245</td>
  1323.                        <td>Serbia</td>
  1324.                    </tr>
  1325.                                    <tr>
  1326.                        <td><a href="/en/history/%D0%A1%D0%BC%D0%B5%D0%B4%D0%B5%D1%80%D0%B5%D0%B2%D0%BE">Смедерево</a></td>
  1327.                        <td>Дунав</td>
  1328.                        <td>1116</td>
  1329.                        <td>2024-10-29 23:00:00</td>
  1330.                        <td>466</td>
  1331.                        <td>Serbia</td>
  1332.                    </tr>
  1333.                                    <tr>
  1334.                        <td><a href="/en/history/%D0%A1%D1%80%D0%B5%D0%BC%D1%81%D0%BA%D0%B0-%D0%9C%D0%B8%D1%82%D1%80%D0%BE%D0%B2%D0%B8%D1%86%D0%B0">Сремска Митровица</a></td>
  1335.                        <td>Сава</td>
  1336.                        <td>139</td>
  1337.                        <td>2024-10-29 23:30:00</td>
  1338.                        <td>150</td>
  1339.                        <td>Serbia</td>
  1340.                    </tr>
  1341.                                    <tr>
  1342.                        <td><a href="/en/history/%D0%A2%D0%B8%D1%82%D0%B5%D0%BB">Тител</a></td>
  1343.                        <td>Тиса</td>
  1344.                        <td>8</td>
  1345.                        <td>2024-10-28 06:00:00</td>
  1346.                        <td>-777</td>
  1347.                        <td>Serbia</td>
  1348.                    </tr>
  1349.                                    <tr>
  1350.                        <td><a href="/en/history/%D0%A8%D0%B0%D0%B1%D0%B0%D1%86">Шабац</a></td>
  1351.                        <td>Сава</td>
  1352.                        <td>106</td>
  1353.                        <td>2024-10-29 07:53:00</td>
  1354.                        <td>45</td>
  1355.                        <td>Serbia</td>
  1356.                    </tr>
  1357.                                    <tr>
  1358.                        <td><a href="/en/history/BRATISLAVA">BRATISLAVA</a></td>
  1359.                        <td>Dunaj</td>
  1360.                        <td>1868</td>
  1361.                        <td>2024-10-29 05:00:00</td>
  1362.                        <td>345</td>
  1363.                        <td>Slovakia</td>
  1364.                    </tr>
  1365.                                    <tr>
  1366.                        <td><a href="/en/history/DEVIN">DEVIN</a></td>
  1367.                        <td>Dunaj</td>
  1368.                        <td>1879</td>
  1369.                        <td>2024-10-29 05:00:00</td>
  1370.                        <td>233</td>
  1371.                        <td>Slovakia</td>
  1372.                    </tr>
  1373.                                    <tr>
  1374.                        <td><a href="/en/history/KOMARNO">KOMARNO</a></td>
  1375.                        <td>Dunaj</td>
  1376.                        <td>1767</td>
  1377.                        <td>2024-10-29 05:00:00</td>
  1378.                        <td>207</td>
  1379.                        <td>Slovakia</td>
  1380.                    </tr>
  1381.                                    <tr>
  1382.                        <td><a href="/en/history/MEDVEDOV">MEDVEDOV</a></td>
  1383.                        <td>Dunaj</td>
  1384.                        <td>1806</td>
  1385.                        <td>2024-10-29 05:00:00</td>
  1386.                        <td>210</td>
  1387.                        <td>Slovakia</td>
  1388.                    </tr>
  1389.                                    <tr>
  1390.                        <td><a href="/en/history/STUROVO">STUROVO</a></td>
  1391.                        <td>Dunaj</td>
  1392.                        <td>1718</td>
  1393.                        <td>2024-10-29 05:00:00</td>
  1394.                        <td>146</td>
  1395.                        <td>Slovakia</td>
  1396.                    </tr>
  1397.                                    <tr>
  1398.                        <td><a href="/en/history/Vodomjer-Slavonski-Kobas">Vodomjer Slavonski Kobas</a></td>
  1399.                        <td>Sava (Croatia)</td>
  1400.                        <td>400</td>
  1401.                        <td>2024-10-17 22:00:00</td>
  1402.                        <td>452</td>
  1403.                        <td>Unknown</td>
  1404.                    </tr>
  1405.                                    <tr>
  1406.                        <td><a href="/en/history/Vodomjer-Stara-Gradiska">Vodomjer Stara Gradiska</a></td>
  1407.                        <td>Sava (Croatia)</td>
  1408.                        <td>467</td>
  1409.                        <td>2024-10-17 22:00:00</td>
  1410.                        <td>411</td>
  1411.                        <td>Unknown</td>
  1412.                    </tr>
  1413.                            </tbody>
  1414.        </table>
  1415.  
  1416.        
  1417.    
  1418. </div>
  1419. </div>
  1420.  
  1421. <script>
  1422. function updateTable() {
  1423.    const country = document.getElementById('country-select').value;
  1424.    const date = document.getElementById('date-select') ? document.getElementById('date-select').value : '';
  1425.    const lang = "en";
  1426.  
  1427.    if (country) {
  1428.        const newUrl = `/${lang}/${country}` + (date ? `/${date}` : '');
  1429.        window.location.href = newUrl;
  1430.    } else {
  1431.        window.location.href = `/${lang}`;
  1432.    }
  1433. }
  1434.  
  1435. document.getElementById('country-select').addEventListener('change', function() {
  1436.    const dateContainer = document.getElementById('date-container');
  1437.    const country = document.getElementById('country-select').value;
  1438.  
  1439.    if (country === 'Romania' || !false) {
  1440.        if (dateContainer) dateContainer.style.display = 'none';
  1441.    } else {
  1442.        if (dateContainer) dateContainer.style.display = 'block';
  1443.    }
  1444. });
  1445. </script>
  1446.  
  1447.  
  1448. <footer class="card">
  1449.    <center>
  1450.        <p>
  1451.            &copy; 2024 Danube Alert. All rights reserved.        </p>
  1452.        <nav>
  1453.            <ul style="list-style-type: none; padding: 0;">
  1454.                <li style="display: inline; margin-right: 10px;">
  1455.                    <a href="https://danubealert.com/functions/login.php">Login</a>
  1456.                </li>
  1457.                <li style="display: inline; margin-right: 10px;">
  1458.                    <a href="https://danubealert.com/functions/register.php">Register</a>
  1459.                </li>
  1460.                <li style="display: inline; margin-right: 10px;">
  1461.                    <a href="https://danubealert.com/user/account.php">My Account</a>
  1462.                </li>
  1463.                <li style="display: inline; margin-right: 10px;">
  1464.                    <a href="https://danubealert.com/tutorials/all.php">Tutorials</a>
  1465.                </li>
  1466.                <li style="display: inline; margin-right: 10px;">
  1467.                    <a href="https://danubealert.com/privacy.php">Privacy Policy</a>
  1468.                </li>
  1469.                <li style="display: inline; margin-right: 10px;">
  1470.                    <a href="https://danubealert.com/terms_conditions.php">Terms & Conditions</a>
  1471.                </li>
  1472.                <li style="display: inline; margin-right: 10px;">
  1473.                    <a href="https://discord.com/oauth2/authorize?client_id=1286674435029598340">Discord Bot</a>
  1474.                </li>
  1475.                <li style="display: inline; margin-right: 10px;">
  1476.                    <a href="https://t.me/DanubeAlertsBot">Telegram Bot</a>
  1477.                </li>
  1478. <!-- Dropdown pentru selecția limbii în footer -->
  1479. <div class="translate-dropdown" style="position: relative; margin-top: 20px; text-align: center;">
  1480.    <button onclick="toggleTranslateMenu()" style="
  1481.        background-color: white;
  1482.        border: 1px solid #ccc;
  1483.        border-radius: 5px;
  1484.        padding: 5px 10px;
  1485.        font-size: 14px;
  1486.        color: #333;
  1487.        cursor: pointer;
  1488.        outline: none;
  1489.        transition: border 0.3s ease;">
  1490.        Translate
  1491.    </button>
  1492.    
  1493.    <!-- Meniul care conține țările (ascuns inițial) -->
  1494.    <div id="translateMenu" style="
  1495.        display: none;
  1496.        position: absolute;
  1497.        left: 50%;
  1498.        transform: translateX(-50%);
  1499.        background-color: white;
  1500.        border: 1px solid #ccc;
  1501.        border-radius: 5px;
  1502.        margin-top: 5px;
  1503.        padding: 5px 0;
  1504.        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  1505.        z-index: 100;">
  1506.        <a href="#" onclick="changeLanguage('ro')" style="display: block; padding: 8px 15px; text-decoration: none; color: #333;">Română</a>
  1507.        <a href="#" onclick="changeLanguage('en')" style="display: block; padding: 8px 15px; text-decoration: none; color: #333;">English</a>
  1508.        <a href="#" onclick="changeLanguage('de')" style="display: block; padding: 8px 15px; text-decoration: none; color: #333;">Österreich (Austria)</a>
  1509.        <a href="#" onclick="changeLanguage('sk')" style="display: block; padding: 8px 15px; text-decoration: none; color: #333;">Slovenská Republika (Slovakia)</a>
  1510.        <a href="#" onclick="changeLanguage('hu')" style="display: block; padding: 8px 15px; text-decoration: none; color: #333;">Magyarország (Hungary)</a>
  1511.        <a href="#" onclick="changeLanguage('hr')" style="display: block; padding: 8px 15px; text-decoration: none; color: #333;">Hrvatska (Croatia)</a>
  1512.        <a href="#" onclick="changeLanguage('sr')" style="display: block; padding: 8px 15px; text-decoration: none; color: #333;">Србија (Serbia)</a>
  1513.        <a href="#" onclick="changeLanguage('bg')" style="display: block; padding: 8px 15px; text-decoration: none; color: #333;">България (Bulgaria)</a>
  1514.    </div>
  1515. </div>
  1516.  
  1517. <!-- Script pentru schimbarea limbii și toggle-ul meniului -->
  1518. <script>
  1519.    // Funcție pentru a deschide/închide meniul de traducere
  1520.    function toggleTranslateMenu() {
  1521.        const menu = document.getElementById('translateMenu');
  1522.        menu.style.display = (menu.style.display === 'block') ? 'none' : 'block';
  1523.    }
  1524.  
  1525.    // Funcție pentru redirecționarea limbii selectate
  1526.    function changeLanguage(langCode) {
  1527.        if (langCode === 'ro') {
  1528.            // Redirecționează către pagina originală pentru limba Română
  1529.            window.location.href = 'https://danubealert.com';
  1530.        } else {
  1531.            // Redirecționează către Google Translate pentru alte limbi
  1532.            const translateUrl = `https://danubealert-com.translate.goog/?_x_tr_sl=ro&_x_tr_tl=${langCode}&_x_tr_hl=en&_x_tr_pto=wapp`;
  1533.            window.location.href = translateUrl;
  1534.        }
  1535.    }
  1536.  
  1537.    // Închide meniul de traducere dacă utilizatorul dă click în afara acestuia
  1538.    document.addEventListener('click', function(event) {
  1539.        const menu = document.getElementById('translateMenu');
  1540.        if (!event.target.closest('.translate-dropdown')) {
  1541.            menu.style.display = 'none';
  1542.        }
  1543.    });
  1544. </script>
  1545.  
  1546.            </ul>
  1547.        </nav>
  1548.    </center>
  1549. </footer>
  1550.  
  1551. </body>
  1552. </html>
  1553.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda