The paragraph below is an attempt to incorporate interactive text. I’ve added hover-over text to the key word and included a hyperlink to the Wikipedia site.
In this unit, we will be looking at Consequentialism. The Consequentialist says that the morally right thing to do is when the end result achieves your goal. For instance, most people would agree that lying is wrong. But if telling a lie would help save a person’s life, consequentialism says it’s the right thing to do.
For some reason, my first attempt to follow Keith’s video cast didn’t succeed in adding hover-over text. Below is the code I used:
<p>In this unit, we will be looking at <a href="https://en.wikipedia.org/wiki/Consequentialism" title="In moral philosophy, consequentialism is a class of normative ethical theories that holds that the consequences of one's conduct are the ultimate basis for judgement about the rightness or wrongness of that conduct.">Consequentialism</a> The Consequentialist says that the morally right thing to do is when the end result achieves your goal. For instance, most people would agree that lying is wrong. But if telling a lie would help save a person’s life, consequentialism says it’s the right thing to do. </p>
After a few more attempts, I was finally able to get the desired result using this code:
<p>In this unit, we will be looking at <span title="In moral philosophy, consequentialism is a class of normative ethical theories that holds that the consequences of one's conduct are the ultimate basis for judgement about the rightness or wrongness of that conduct."><a href="https://en.wikipedia.org/wiki/Consequentialism">Consequentialism</a></span>. The Consequentialist says that the morally right thing to do is when the end result achieves your goal. For instance, most people would agree that lying is wrong. But if telling a lie would help save a person’s life, consequentialism says it’s the right thing to do. </p>