Files
portfolio/index.html
LJ5O 3e532a4027 Added some buttons so phone users can move
Also made sure that body takes full screen, so phone users can't scroll
2024-01-28 23:29:42 +01:00

25 lines
651 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Kévin Sailly - Portfolio</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div id="notification_bar">
<p><!-- Text added here by JS --></p>
</div>
<div id="picture_zoom" style="display: none;"><!-- Hidden by default, Jquery will show it later -->
<img src="" alt="Sign picture" /><!-- src is defined by JS -->
</div>
<div id="movement_keys">
<div id="key_up"></div>
<div id="key_left"></div>
<div id="key_down"></div>
<div id="key_right"></div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>