Just trying to do some custom html views for custom properties and using tables. When I tried to do any formatting it affects the whole page. How do you do custom html without affecting the whole page. Bottom has what it does to the page. Thanks
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<h2>Site Name: ${Site_Name} Profit Center:
${Profit_Center} Support Tier: ${Support_Tier}</h2>
<table width="100%">
<table>
<tr>
<th>Contact Name</th>
<th>Phone Number</th>
</tr>
<tr>
<td>Main Site</td>
<td>${Main_Site_Phone}</td>
</tr>
<tr>
<td>${Site_Contact}</td>
<td>${Site_Contact_Phone}</td>
</tr>
<tr>
<td>${Site_Contact_2}</td>
<td>${Site_Contact_Phone_2}</td>
</tr>
</table>
</body>
</html>
