Skip to content
Permalink
9d44948c97
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
51 lines (47 sloc) 1.17 KB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My Shopping List App</title>
<style>
#item{
border: 1px solid #ccc;
font-size: 16px;
}
ul,li {
margin: 0px;
padding: 0px;
list-style-type: none;
}
li{
padding: 0.5em;
}
</style>
</head>
<body>
<h1>My Shopping List App</h1>
<input type="text" name="item" id="item"> <button id="add">Add</button>
<hr>
<ul>
<li>
<input type="checkbox" name="items">
Milk
<a href="">x</a>
</li>
<li>
<input type="checkbox" name="items">
Cookies
<a href="">x</a>
</li>
</ul>
<script>
const addBtn = document.getElementById('add');
const inputBox = document.getElementById('item');
addBtn.addEventListener('click',function(){
console.log('button clicked', inputBox.value);
});
</script>
</body>
</html>