45 lines
1014 B
HTML
45 lines
1014 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 20px;
|
|
}
|
|
#list-wrapper {
|
|
max-width: 400px;
|
|
margin-top: 15px;
|
|
padding: 10px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 6px;
|
|
background-color: #f9f9f9;
|
|
}
|
|
ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
li {
|
|
padding: 8px;
|
|
margin: 4px 0;
|
|
background-color: #fff;
|
|
border: 1px solid #eee;
|
|
border-radius: 4px;
|
|
}
|
|
</style>
|
|
<script src="js/script.js" defer> </script>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Loading Data...</h1>
|
|
|
|
<!-- Lista opakowana w div z id -->
|
|
<div id="list-wrapper">
|
|
<ul id="item-list"></ul>
|
|
</div>
|
|
|
|
</body>
|
|
</body>
|
|
</html> |