35 lines
937 B
HTML
35 lines
937 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" defer></script>
|
|
<title>javascript test</title>
|
|
</head>
|
|
<body>
|
|
<div class="head-col">
|
|
<p class="center">webside test mit node backend</p>
|
|
</div>
|
|
<button class="center" onclick="press()">Drück mich</button>
|
|
<button class="center" onclick="redBg()">hintergrund rot(dom)</button>
|
|
<div class="adding">
|
|
<input id="inputText" type="text">
|
|
<button id="addButton">hinzufügen</button>
|
|
</div>
|
|
<div class="inputTable">
|
|
<table id="contentTable">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">id</th>
|
|
<th scope="col">text</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|