20 lines
425 B
HTML
20 lines
425 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Graphentheorie</title>
|
|
<link rel="stylesheet" href="index.css">
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Graphentheorie Visualisierung</h1>
|
|
|
|
<svg id="svgFeld">
|
|
<rect width="100%" height="100%" fill="blue" />
|
|
</svg>
|
|
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html>
|