fix: removed extra quotation mark in HTML class attribute

Corrected an HTML syntax error by removing a redundant quotation mark from a class attribute. This fixes the display issue for the IP card component, ensuring proper rendering of the IPv4 address section.
This commit is contained in:
Kumi 2024-09-18 10:01:28 +02:00
parent dc49da70d3
commit 9c1c148da0
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -35,7 +35,7 @@ $ipv6_endpoint = "https://ipv6." . $domain;
<main> <main>
<div class="container"> <div class="container">
<section class="ip-display"> <section class="ip-display">
<div class="ip-card""> <div class="ip-card">
<h3>IPv4 Address</h3> <h3>IPv4 Address</h3>
<p id="ipv4"> <p id="ipv4">
<iframe src="<?php echo $ipv4_endpoint; ?>" frameborder="0" width="100%" height="100%"></iframe> <iframe src="<?php echo $ipv4_endpoint; ?>" frameborder="0" width="100%" height="100%"></iframe>