Files
portfolio/index.html
LJ5O 89531178ba Added new arrow picture
Used for phone movement buttons
I don't really like those arrows, so I may change them
2024-01-28 23:37:04 +01:00

25 lines
1023 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"><img src="/objects/textures/arrow.png" width="100%" height="100%"/></div>
<div id="key_left"><img src="/objects/textures/arrow.png" width="100%" height="100%" style="transform: rotate(-90deg);"/></div>
<div id="key_down"><img src="/objects/textures/arrow.png" width="100%" height="100%" style="transform: rotate(180deg);"/></div>
<div id="key_right"><img src="/objects/textures/arrow.png" width="100%" height="100%" style="transform: rotate(90deg);"/></div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>