Practice manipulating the DOM!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
DOM_Intro_Exercise/index.html

38 lines
659 B

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>The DOM playground</title>
<style>
.selected{ font-weight: bold;}
</style>
<script>
console.log("JavaScript is alive");
</script>
</head>
<body>
<div id="greeting">
Hello There!
</div>
<hr>
<div class="content">
Essentials:
</div>
<div id="essentials">
<ul>
<li>milk</li>
<li class="selected">honey</li>
<li>water</li>
<li>wine</li>
<li>beer</li>
</ul>
</div>
<div>
<img src="./images/honey.jpeg" height="60" width="60" alt="beer">
</div>
<input type="submit" value="Reset" id="reset"></input>
</body>
</html>