17 lines
642 B
HTML
17 lines
642 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="res/js/jquery/jquery.js"></script>
|
|
</head>
|
|
<body id="floating">
|
|
<button id="float-button">
|
|
<span id="icon"><img src="res/img/client.png" width="22px"></span> <!-- Ícone de exemplo -->
|
|
<span id="count">0</span>
|
|
</button>
|
|
<script src="floating.js"></script>
|
|
</body>
|
|
</html> |