-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1000Navber.php
43 lines (41 loc) · 1.01 KB
/
1000Navber.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1000 Navbars</title>
<style>
/* Simple styles for the navbars */
.navbar {
background-color: #333;
overflow: hidden;
margin-bottom: 10px;
}
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
</style>
</head>
<body>
<?php
// Loop to generate 1000 navbars
for ($i = 1; $i <= 1000; $i++) {
echo '<div class="navbar">';
echo '<a href="#home">Home</a>';
echo '<a href="#about">About</a>';
echo '<a href="#services">Services</a>';
echo '<a href="#contact">Contact</a>';
echo '</div>';
}
?>
</body>
</html>