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:
parent
9c1c148da0
commit
6b8895fa60
1 changed files with 4 additions and 1 deletions
|
@ -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">
|
||||||
|
@ -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>
|
Loading…
Reference in a new issue