Projektmanagement-Game/index.html

32 lines
800 B
HTML
Raw Normal View History

2021-05-20 17:58:24 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Projektmanagement Game</title>
2021-05-20 18:31:54 +00:00
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Material+Icons">
2021-05-20 17:58:24 +00:00
<link rel="stylesheet" href="static/css/components.css">
<link rel="stylesheet" href="static/css/header.css">
<link rel="stylesheet" href="static/css/index.css">
</head>
<body>
2021-05-20 18:31:54 +00:00
<header>
<div class="app-header">
<div class="logo"></div>
<div class="title">Projektmanagement Game</div>
<div class="help"><span class="material-icon">more_vert</span></div>
</div>
</header>
<main>
2021-05-20 17:58:24 +00:00
2021-05-20 18:31:54 +00:00
</main>
<footer>
2021-05-20 17:58:24 +00:00
2021-05-20 18:31:54 +00:00
</footer>
2021-05-20 17:58:24 +00:00
2021-05-20 18:31:54 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/5.1.3/pixi.min.js"></script>
<script src="static/js/index.js"></script>
2021-05-20 17:58:24 +00:00
</body>
</html>