<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
table {
border-spacing: 0px;
table-layout: fixed;
margin-left: auto;
margin-right: auto;
width: 310px;
}
td {
border: 1px solid #666;
word-break: break-all;
}
</style>
</head>
<body>
<table>
<tr>
<td>1</td>
<td>What is Lorem Ipsum?</td>
<td>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </td>
</tr>
<tr>
<td>2</td>
<td>Why do we use it?</td>
<td>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </td>
</tr>
</table>
</body>
</html>