<!DOCTYPE html>
<html>

<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div.a {font-size: 14px;}
* {
box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 45%;
padding: 10px;
height: min;
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}
</style>
</head>

<body>

<div class="container">
<h2>Meet the team</h2>

<div class="row">
<div class="column" style="">
<!--<img src="/uploads/agent-7/11.png" style="width:100%">-->

<b>Robert J. Nixon</b>

<em>President of The Nixon Team, Licensed Real Estate Agent & Broker</em>

</div>
<div class="column" style="">
<img src="/uploads/agent-7/12.png" style="width:100%">
<!--<em>2040 Victory Blvd Staten Island, NY</em>-->
</div>
</div>

<div class="row">
<div class="column" style="">
<img src="/uploads/agent-7/13.png" style="width:100%">
<!--<em>123 Monroe Ave Staten Island, NY</em>-->
</div>
<div class="column" style="">
<img src="/uploads/agent-7/14.png" style="width:100%">
<!--<em>465 Albany Shaker Rd Colonie, NY</em>-->
</div>
</div>


</div>


</body>
</html>