Uebungsaufgaben/GraphenTeorie/Website/index.html

20 lines
425 B
HTML
Raw Normal View History

2024-05-18 20:35:28 +00:00
<!DOCTYPE html>
2024-06-11 14:23:46 +00:00
<html lang="de">
2024-05-18 20:35:28 +00:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-06-11 14:23:46 +00:00
<title>Graphentheorie</title>
2024-05-18 20:35:28 +00:00
<link rel="stylesheet" href="index.css">
</head>
2024-05-22 21:00:22 +00:00
2024-05-18 20:35:28 +00:00
<body>
2024-06-11 14:23:46 +00:00
<h1>Graphentheorie Visualisierung</h1>
2024-05-22 21:00:22 +00:00
<svg id="svgFeld">
<rect width="100%" height="100%" fill="blue" />
</svg>
<script src="index.js"></script>
2024-05-18 20:35:28 +00:00
</body>
</html>