

Helping you build the WordPress
Site of your dreams.
Welcome to the easiest guide you’ll find to prove how quickly you can jumpstart your greatest asset—a website!
Easy to follow Guides for WordPress beginners.
From learning about Posts vs Pages to site SEO and managing site information, My Site Blueprint is here to help.


<!-- WordPress-Compatible Theme Template for SEED Capital Co -->
<!-- You can use this in a custom theme or insert into the page builder HTML block -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SEED Capital Co</title>
<style>
body {
font-family: 'Helvetica Neue', sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
header {
background: linear-gradient(90deg, #3c8dbc, #00c0ef);
padding: 2rem;
color: white;
text-align: center;
}
nav {
display: flex;
justify-content: center;
gap: 2rem;
background-color: #e0e0e0;
padding: 1rem;
}
nav a {
text-decoration: none;
color: #333;
font-weight: bold;
}
.hero {
text-align: center;
padding: 4rem 2rem;
background: #fff;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.25rem;
max-width: 700px;
margin: 1rem auto;
}
.section {
padding: 4rem 2rem;
max-width: 1100px;
margin: auto;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.card {
background-color: white;
padding: 2rem;
box-shadow: 0 0 15px rgba(0,0,0,0.05);
border-radius: 8px;
}
form {
max-width: 600px;
margin: 2rem auto;
padding: 2rem;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
border-radius: 8px;
}
form input, form textarea {
width: 100%;
padding: 1rem;
margin: 0.5rem 0;
border: 1px solid #ccc;
border-radius: 4px;
}
form button {
background-color: #3c8dbc;
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 4px;
cursor: pointer;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 2rem;
}
</style>
</head>
<body>
<header>
<h1>SEED Capital Co</h1>
<p>Social Equity Empowerment & Diversity Solutions for Small Businesses</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#apply">Apply Now</a>
<a href="#contact">Contact</a>
</nav>
<section class="hero">
<h1>Empowering Underserved Businesses to Grow</h1>
<p>We provide capital, resources, and strategy to help small and minority-owned businesses thrive—especially in communities where opportunity is limited but potential is limitless.</p>
</section>
<section class="section" id="about">
<h2>Our Mission</h2>
<p>The SEED in our name stands for Social Equity Empowerment and Diversity. We are committed to serving small business owners—especially those from historically underfunded communities—by providing access to capital and strategic consulting to fuel innovation and growth.</p>
</section>
<section class="section" id="services">
<h2>What We Offer</h2>
<div class="card-grid">
<div class="card">
<h3>Business Funding</h3>
<p>Flexible loan options for working capital, equipment purchases, or scaling operations—tailored to your business needs.</p>
</div>
<div class="card">
<h3>Consulting</h3>
<p>Strategic advice and expert guidance for business structure, compliance, and long-term success.</p>
</div>
<div class="card">
<h3>Application Support</h3>
<p>We help prepare and submit the right documents to improve your chances of approval and funding success.</p>
</div>
</div>
</section>
<section class="section" id="apply">
<h2>Apply for Capital</h2>
<p>Get started with a fast, no-obligation application. Let’s grow your business together.</p>
<p><a href="https://forms.gle/873g12zCdnhDxidX8" target="_blank" style="font-weight: bold; color: #3c8dbc;">Click here to apply via our funding intake form</a></p>
</section>
<section class="section" id="contact">
<h2>Contact Us</h2>
<p>Email: info@seedcapitalco.com</p>
<p>Phone: (xxx) xxx-xxxx</p>
<p>Follow us on social media for updates and resources.</p>
<h3>Quick Inquiry</h3>
<p>This is a non-commitment discovery form. Use it to ask questions or express interest in our services without any obligation.</p>
<form action="https://formspree.io/f/mwkgyqgj" method="POST">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<input type="text" name="business" placeholder="Business Name">
<textarea name="message" rows="5" placeholder="How can we help?" required></textarea>
<button type="submit">Submit Inquiry</button>
</form>
<h4>More Options Available Upon Request</h4>
<ul>
<li>Custom CRM or Airtable integration for managing leads</li>
<li>Google Analytics and Meta Pixel tracking setup</li>
<li>Email newsletter opt-ins and automation</li>
<li>SMS/text lead capture integrations</li>
</ul>
<p>Email us to activate any of these features.</p>
</section>
<footer>
<p>© 2025 SEED Capital Co. All rights reserved.</p>
</footer>
</body>
</html>