18 lines
279 B
PHP
18 lines
279 B
PHP
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>Dummy Title</title>
|
|
<link href="css/styles.css" type="text/css" rel="stylesheet">
|
|
<script src="js/index.js" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
<?php
|
|
for ($i = 0; $i < 100; $i++)
|
|
echo '<div></div>';
|
|
?>
|
|
</body>
|
|
|
|
</html>
|