forked from Simnation/Main
24 lines
836 B
HTML
24 lines
836 B
HTML
![]() |
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>QB Menu</title>
|
||
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
|
||
|
|
||
|
<!-- Font Awesome Icons Import -->
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
|
||
|
|
||
|
<link rel="stylesheet" href="./style.css" />
|
||
|
<script src="./script.js" defer></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="container">
|
||
|
<div id="buttons"></div>
|
||
|
<div id="imageHover">
|
||
|
<img id="image" />
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|