This commit is contained in:
2024-04-22 10:17:39 +02:00
parent d252d2f6df
commit f8da722c30
2 changed files with 6 additions and 2 deletions

View File

@@ -1,10 +1,12 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Hello, World!</title> <title>Company Manager</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head> </head>
<body> <body>
<h1>Hello, World!</h1> <h1>Hello, World!</h1>
<p>Welcome to my first web page.</p> <p>Welcome to my first web page.</p>
<script src="script.js"></script>
</body> </body>
</html> </html>

View File

@@ -1 +1,3 @@
fetch('http://localhost:31272/customer')
.then(x => x.json())
.then(y => console.log(y))