US strikes Iran for third day, will reimpose blockade

In this picture obtained from Iran's ISNA news agency on June 18, 2026, vessels are seen anchored in Bandar Abbas along the Strait of Hormuz (AFP photo)
In this picture obtained from Iran's ISNA news agency on June 18, 2026, vessels are seen anchored in Bandar Abbas along the Strait of Hormuz (AFP photo)

TEHRAN — The United States launched a third night of strikes on Iran Tuesday as President Donald Trump reimposed a blockade on Iranian ports and floated a 20 per cent fee on cargo in the vital Strait of Hormuz.

Trump said a deal with the Islamic republic was still possible even as attacks were carried out, with Iran striking two ships in the strategic waterway and killing one crew member, according to the United Arab Emirates.

The US military said its five-hour mission hit targets across Iran including coastal Bushehr and Bandar Abbas to "degrade Iran's ability to attack commercial shipping".

"We're going to hit them very hard tonight, and we're going to hit them hard tomorrow," Trump said at the White House on Monday.

Trump's declaration on the Hormuz blockade followed US and Iranian attacks of a scale unseen since an April ceasefire in the Middle East conflict, adding to doubts about efforts to bring a permanent end to the war.

Iran started blocking the strait after US-Israel attacks in February, which prompted Washington's blockade on Tehran's ports -- but restrictions eased after the sides agreed a preliminary deal in June.

Trump said Monday that the United States was "taking over" the strait and would slap a levy of 20 percent on all cargo shipped through it, in an announcement that drew mockery from Iran and accusations of "piracy".

US Central Command (CENTCOM) said Iran's ports on the waterway would be blockaded from 2000 GMT on Tuesday.

Tehran launched attacks on other US allies in the region, including Jordan, which said it had shot down four missiles from Iran.

Resumed conflict

Trump formally notified Congress last week that the United States had resumed military conflict against Iran, the White House confirmed to AFP, giving the Pentagon an additional 60 days to operate in the region without congressional approval.

In addition to the moves in Hormuz, the US president also threatened to destroy Pickaxe Mountain, a deeply buried nuclear site near Natanz where Western intelligence suspects Iran is building an undeclared enrichment facility.

"Tell the Iranians to be ready. Let them know we're coming [and) there's not a damn thing they can do about it," he told conservative radio host Hugh Hewitt.

Trump declared on Truth Social that the United States would be "known as 'THE GUARDIAN OF THE HORMUZ STRAIT'" and levy a 20 per cent fee on all cargo shipped through the waterway.

While Iran's ports would again be blockaded, Trump said "all other countries will have fair and open use of the strait".

Iranian Foreign Minister Abbas Araghchi responded mockingly on X that Trump was "absolutely right" that whoever guarantees safe passage should be compensated -- but that Tehran would charge less.

"20% is of course too much," he said.

Washington has vehemently opposed Tehran's desire to charge tolls in the strait, which international law generally forbids.

Despite all signs to the contrary, Trump said Monday that a deal with Tehran to end the war was still possible.

Iran's Foreign Ministry spokesman Esmaeil Baqaei said earlier Monday that the June memorandum of understanding that formed the basis for the negotiations and lifted the US blockade was "in crisis".

Baqaei said Iran would ignore its obligations under the deal if the Washington did the same, but added that Tehran was continuing talks with mediators from Qatar, Pakistan and Oman to prevent further escalation.

.col-lg-12.second .opinion-widget{border-top:1px solid #D0D0D0;} #widget_1623 .opinions-title {font-size:32px;} #widget_1623 .opinions-title a{font-size:32px;} .first-author{ background-color:#ecedef; } .first-opinion-author-name{ background-color:white; width:max-content; padding:5px; }
.epaper-separator{ height: 1px; width: 100%; background-color: #D0D0D0; margin: 15px 0; }

Today’s Paper

.related-articles .article-widget-sm .article-title{font-size:16px;-webkit-line-clamp:3;} .related-articles .layout-ratio{padding-bottom:55%;}
.alert-success { color :#A3656F ; } .alert-danger { color : red ; } .footer { font-family:Myriad Pro,Arial; } .newspaper-footer{ visibility:hidden; } .socialFixOuter { position: fixed; top: 50%; margin-top: 40px; right: 0; transition: .2s; z-index: 20; height: 217px; width: 40px; } .socialFix { height: 30px; width: 30px; display: block; position: relative; cursor: pointer; background-size: 18px 18px; transition: .2s; background-position: center; background-repeat: no-repeat; border-radius: 2px; margin-top: 1px; } .socialFix:hover { width: 40px; margin-left: -10px; } .app-badge-img { height: 36px; width: auto; } @media (max-width: 768px) { .app-badge-img { height: 32px; } .app-badges { justify-content: center !important; } }
document.addEventListener("DOMContentLoaded", function () { const socialFix = document.querySelector(".socialFixOuter"); if (!socialFix) return; let firstInteraction = false; let hideTimeout = null; function checkMobileScreen() { if (window.innerWidth < 768) { socialFix.style.display = "none"; } else { socialFix.style.display = "block"; } } checkMobileScreen(); window.addEventListener("resize", checkMobileScreen); function handleFirstInteraction() { if (firstInteraction) return; if (window.innerWidth < 768) return; firstInteraction = true; socialFix.style.right = "-25px"; } socialFix.addEventListener("mouseenter", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); socialFix.style.right = "0"; }); socialFix.addEventListener("mouseleave", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); hideTimeout = setTimeout(() => { socialFix.style.right = "-25px"; }, 500); }); ["click", "touchstart"].forEach((evt) => { socialFix.addEventListener(evt, handleFirstInteraction); }); }); function validateEmail(email) { if (email.length > 255) return false; const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) return false; if (email.includes('..') || email.startsWith('.') || email.endsWith('.')) return false; return true; } function sanitizeInput(input) { input = input.replace(/<[^>]*>/g, ''); input = input.replace(/javascript:/gi, ''); input = input.replace(/on\w+\s*=/gi, ''); input = input.replace(/[<>"'&(){}[\]]/g, ''); return input.trim(); } document.addEventListener('DOMContentLoaded', function () { function showModal(message, type) { const messageContainer = document.getElementById("messageContainerFooter"); messageContainer.textContent = message; messageContainer.className = `alert alert-${type} mt-3`; messageContainer.classList.remove("d-none"); setTimeout(() => { messageContainer.classList.add("d-none"); }, 5000); } document.getElementById("emailFormFooter").addEventListener("submit", function(event) { event.preventDefault(); const emailInput = document.getElementById("emailFooter"); const email = sanitizeInput(emailInput.value.trim()); if (!validateEmail(email)) { showModal('Invalid email format', 'danger'); return; } const formData = new FormData(); formData.append('email', email); fetch('/subscribeNewsletter', { method: "POST", body: formData, headers: { "Accept": "application/json", "X-Requested-With": "XMLHttpRequest" } }) .then(response => { if (!response.ok) { showModal("Error submitting email. Try again.", 'danger'); } return response.json(); }) .then(data => { showModal(data.message, 'success'); }) .catch(error => { showModal("Error submitting email. Try again.", 'danger'); }); }); });