Get started with lemonade CDN
MIT licensed
Lemonade is a library for creating interactive, responsive designs with minimal code.
Tags:- sass
- framework
Stable version
Copied!
How to start using lemonade CDN
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.cdnhub.io/lemonade/2.5/lemonade.min.css">
<title>Get started with lemonade CDN - cdnhub.io</title>
<style>
body {
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<div class="lemonade-stand">
<h1>Welcome to my Lemonade Stand!</h1>
<p>Freshly squeezed lemonade for only $1.00!</p>
<button id="buy-lemonade">Buy Lemonade</button>
</div>
<script>
const buyLemonadeButton = document.getElementById('buy-lemonade');
buyLemonadeButton.addEventListener('click', function() {
alert('You bought a delicious glass of lemonade for $1.00!');
});
</script>
</body>
</html>
Copied!
Copied!