Skip to content

Instantly share code, notes, and snippets.

@lucianobragaweb
Last active February 19, 2022 14:13
Show Gist options
  • Save lucianobragaweb/0f8280621aad9adb59a5e89106b057d6 to your computer and use it in GitHub Desktop.
Save lucianobragaweb/0f8280621aad9adb59a5e89106b057d6 to your computer and use it in GitHub Desktop.
Exemplo de uso do Sweet Alert JS
<!DOCTYPE html>
<html>
<head>
<title>Sweet Alert</title>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</head>
<body>
<script type="text/javascript">
swal("Good job!", "You clicked the button!", "success");
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment