Files
webServerTest/index.html
2025-08-20 22:19:57 +02:00

29 lines
744 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href ="style.css">
<meta charset="UTF-8"/>
<meta name="viewport" content = "width=device.width, initial-scale=1.0"/>
<script src="main.js"></script>
<title>javascript test</title>
</head>
<body>
<p class="center">webside test mit node backend</p>
<button class="center" onclick="press()">Drück mich</button>
<button class="center" onclick="redBg()">hintergrund rot(dom)</button>
<table>
<tr>
<th scope="col">test1col</th>
<th scope="col">test2col</th>
<th scope="col">test3col</th>
</tr>
<tr>
<th scope="row">testrow</th>
<td>7</td>
<td>bla</td>
</tr>
</table>
</body>
</html>