<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Scott Brown, MBA</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Scott Brown — Real Estate Broker, Advisor, and Entrepreneur" />
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
background: #f4f6f8;
color: #111;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
}
h1 {
font-size: 2.6rem;
margin-bottom: 0.3em;
}
h2 {
font-weight: 400;
color: #444;
margin-top: 0;
}
section {
margin-top: 40px;
}
a {
color: #0a58ca;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
margin-top: 60px;
font-size: 0.9rem;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>Scott Brown, MBA</h1>
<h2>Real Estate Broker · Advisor · Entrepreneur</h2>
<section>
<p>
I work at the intersection of real estate, business strategy, and technology.
This site serves as a central profile and access point to my work, projects,
and professional activities.
</p>
</section>
<section>
<h3>Current Focus</h3>
<ul>
<li>Residential & Commercial Real Estate</li>
<li>National real estate platforms & publishing</li>
<li>Advisory, brokerage, and project strategy</li>
</ul>
</section>
<section>
<h3>Contact</h3>
<p>
Email: <a href="mailto:email@scottbrown.net">email@scottbrown.net</a>
</p>
</section>
<footer>
© <span id="year"></span> Scott Brown
</footer>
</div>
<script>
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>