KnowledgeBoat Logo

Computer Applications

Use a definition list in a table to show that the word "glunch" means "a look of disdain, anger, or displeasure" and that the word "glumpy" means "sullen, morose, or sulky."

HTML Advanced Features

11 Likes

Answer

<HTML>
<BODY>
<TABLE>
<TR>
<TD>
<DL> 
<DT> Glunch </DT> 
<DD> a look of disdain, anger, or displeasure</DD>
</DL>
</TD>
</TR>
<TR>
<TD>
<DL> 
<DT> Glumpy </DT>
<DD> sullen, morose, or sulky</DD>
</DL>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

Answered By

6 Likes


Related Questions