asked on
HTML (HyperText Markup Language) is the main markup language for creating web pages and other information to be displayed in a web browser, providing both the structure and content for what is sent from a web server through the use of tags. The current implementation of the HTML specification is HTML5.
TRUSTED BY


example:
<HTML>
<HEAD>
<STYLE>
DIV.poop {
height:80;
overflow-y:auto;
}
</STYLE>
</HEAD>
<BODY>
<DIV CLASS="poop">
<TABLE BORDER="1" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD WIDTH="56">asdasdasdsdasd<
<TD WIDTH="100">asdasdasdsdasd
<TD WIDTH="134">asdasdasdsdasd
</TR>
<TR>
<TD>asdasdasdsdasd</TD>
<TD>asdasdasdsdasd</TD>
<TD>asdasdasdsdasd</TD>
</TR>
<TR>
<TD>asdasdasdsdasd</TD>
<TD>asdasdasdsdasd</TD>
<TD>asdasdasdsdasd</TD>
</TR>
<TR>
<TD>asdasdasdsdasd</TD>
<TD>asdasdasdsdasd</TD>
<TD>asdasdasdsdasd</TD>
</TR>
<TR>
<TD>asdasdasdsdasd</TD>
<TD>asdasdasdsdasd</TD>
<TD>asdasdasdsdasd</TD>
</TR>
</TABLE>
</DIV>
</BODY>
</HTML>
Hope that helps