spinn_mit/index.php

28 lines
698 B
PHP
Raw Normal View History

2022-10-26 14:08:26 +02:00
<?php
require_once('system/data.php');
dbVerbindungErzeugen()
?>
2022-10-26 12:05:39 +02:00
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SPINN MIT!</title>
<link rel="stylesheet" href="/css/style.css">
2022-10-26 12:05:39 +02:00
</head>
<body>
<h1>spinn mit!!</h1>
<div id="map">
</div>
2022-10-26 14:20:01 +02:00
<script src="js/functions.js"></script>
<script src="js/main.js"></script>
<script src="loadMap.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAkfYzlFa9nljVhIyfPQoz3n7Zi5TOs4WQ&callback=initMap"
defer ></script>
2022-10-26 12:05:39 +02:00
</body>
2022-10-26 13:11:10 +02:00
</html>