<html>
<head>
<script language="JavaScript">
function add(){
const temp = document.getElementById('temp');
const frd = temp.content.cloneNode(true);
document.getElementById('tabl').tBodies[0].append (frd);
}
</script>
</head>
<body>
<template id=temp>
<tr>
<td><input type='text' name='1'></td>
<td><input type='text' name='2'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
</tr>
</template>
<table id='tabl' border='1'align='left'>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<tr>
<tr>
<td><input type='text' name='1'></td>
<td><input type='text' name='2'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
<td><input type='text' name='1'></td>
</tr>
</table>
<input type='button' value='Добавить новую строку' onClick='add();'>
</body>
</html>
</script>