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