18 lines
597 B
HTML
18 lines
597 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; connect-src https://autoatend.linco.work">
|
|
<title>Floating Button</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="js/jquery/jquery.js"></script>
|
|
</head>
|
|
<body>
|
|
<button id="float-button">
|
|
<span id="icon">🧑🦰</span> <!-- Ícone de exemplo -->
|
|
<span id="count">0</span>
|
|
</button>
|
|
<script src="floating.js"></script>
|
|
|
|
</body>
|
|
</html> |