IsMyInternetWorking/index.html
2025-05-26 20:32:45 -04:00

23 lines
No EOL
624 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Is My Internet Working?</title>
<!-- styles -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- main container -->
<div class="container">
<!-- title -->
<h1 class="title">Is My Internet Working?</h1>
<!-- status box -->
<div class="status-container">
<span id="status" class="status">Yes</span>
</div>
</div>
<!-- scripts -->
<script src="script.js"></script>
</body>
</html>