How to change text colour on click using JavaScript?

Code:
<head>
<title>Expert Coder</title>
</head>

<body>
<h2>How to create a Nested List?</h2>
<ul>
<li>Furniture
<ul>
<li>Chairs</li>
<li>Desk</li>
<li>Sofa</li>
</ul>
</li>
<li>Office Supplies</li>
<li>Technology</li>
</ul>
</body>

</html>