style: fix indentation in HTML for better readability

Corrected the indentation of <li> elements and added newline spacing
in the HTML structure. These changes enhance code readability and
maintain consistency in the project's code style.
This commit is contained in:
Kumi 2024-09-18 10:01:46 +02:00
parent 9c1c148da0
commit 6b8895fa60
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -7,12 +7,14 @@ $ipv6_endpoint = "https://ipv6." . $domain;
?> ?>
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to MyIP.Coffee</title> <title>Welcome to MyIP.Coffee</title>
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
</head> </head>
<body> <body>
<header> <header>
<div class="container"> <div class="container">
@ -21,7 +23,7 @@ $ipv6_endpoint = "https://ipv6." . $domain;
<ul> <ul>
<li><a href="#ipv4">IPs</a></li> <li><a href="#ipv4">IPs</a></li>
<li><a href="#about">About</a></li> <li><a href="#about">About</a></li>
<li><a href="#api">API</a></li> <li><a href="#api">API</a></li>
</ul> </ul>
</nav> </nav>
</div> </div>
@ -65,4 +67,5 @@ $ipv6_endpoint = "https://ipv6." . $domain;
</footer> </footer>
<script src="script.js"></script> <script src="script.js"></script>
</body> </body>
</html> </html>