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:
parent
dc49da70d3
commit
9c1c148da0
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ $ipv6_endpoint = "https://ipv6." . $domain;
|
|||
<main>
|
||||
<div class="container">
|
||||
<section class="ip-display">
|
||||
<div class="ip-card"">
|
||||
<div class="ip-card">
|
||||
<h3>IPv4 Address</h3>
|
||||
<p id="ipv4">
|
||||
<iframe src="<?php echo $ipv4_endpoint; ?>" frameborder="0" width="100%" height="100%"></iframe>
|
||||
|
|
Loading…
Reference in a new issue