Skip to content
Permalink
ef4cef9527
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
50 lines (39 sloc) 839 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Events: Task 1</title>
<style>
p {
color: purple;
margin: 0.5em 0;
}
* {
box-sizing: border-box;
}
button {
display: block;
margin: 20px 0 20px 20px;
}
</style>
<link rel="stylesheet" href="../styles.css" />
</head>
<body>
<section class="preview">
</section>
<button class="off">Machine is off</button>
</body>
<script>
let btn = document.querySelector('.off');
btn.addEventListener('click', () => {
if(btn.className === 'on') {
btn.textContent = 'Machine is off';
btn.className = "off";
} else {
btn.textContent = 'Machine is on';
btn.className = "on";
}
});
// Add your code here
</script>
</html>