san-site/index.html

163 lines
5.5 KiB
HTML
Raw Normal View History

2026-02-10 12:30:45 -08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>San Diego - America's Finest City</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1a1a2e; }
header {
background: linear-gradient(135deg, #0077b6, #00b4d8);
color: white;
text-align: center;
padding: 80px 20px;
}
header h1 { font-size: 3rem; margin-bottom: 10px; }
header p { font-size: 1.2rem; opacity: 0.9; }
nav {
background: #023e8a;
display: flex;
justify-content: center;
gap: 30px;
padding: 14px 20px;
position: sticky;
top: 0;
z-index: 10;
}
nav a { color: white; text-decoration: none; font-weight: 500; }
nav a:hover { text-decoration: underline; }
section { max-width: 900px; margin: 0 auto; padding: 60px 20px; }
section h2 { font-size: 2rem; margin-bottom: 20px; color: #023e8a; }
section p { line-height: 1.7; color: #333; margin-bottom: 16px; }
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 24px;
margin-top: 24px;
}
.card {
background: #f0f8ff;
border-radius: 12px;
padding: 28px;
border-left: 4px solid #0077b6;
}
.card h3 { margin-bottom: 10px; color: #0077b6; }
.card p { margin: 0; font-size: 0.95rem; }
.highlight {
background: #e0f7fa;
border-radius: 12px;
padding: 40px;
text-align: center;
margin-top: 30px;
}
.highlight span { font-size: 2.5rem; display: block; margin-bottom: 6px; }
.stats { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .num { font-size: 2rem; font-weight: 700; color: #0077b6; }
.stat .label { font-size: 0.9rem; color: #555; }
footer {
background: #023e8a;
color: white;
text-align: center;
padding: 30px 20px;
margin-top: 40px;
}
</style>
</head>
<body>
<header>
<h1>San Diego</h1>
<p>America's Finest City</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#attractions">Attractions</a>
<a href="#neighborhoods">Neighborhoods</a>
<a href="#visit">Visit</a>
</nav>
<section id="about">
<h2>About San Diego</h2>
<p>Located on the coast of the Pacific Ocean in Southern California, San Diego is known for its mild year-round climate, natural deep-water harbor, extensive beaches, and long association with the United States Navy and Marine Corps.</p>
<p>With a population of over 1.4 million, San Diego is the eighth-largest city in the United States and the second-largest in California.</p>
<div class="stats" style="margin-top: 30px;">
<div class="stat"><div class="num">266</div><div class="label">Sunny Days/Year</div></div>
<div class="stat"><div class="num">70</div><div class="label">Miles of Coastline</div></div>
<div class="stat"><div class="num">1.4M</div><div class="label">Population</div></div>
<div class="stat"><div class="num">1769</div><div class="label">Year Founded</div></div>
</div>
</section>
<section id="attractions">
<h2>Top Attractions</h2>
<div class="cards">
<div class="card">
<h3>Balboa Park</h3>
<p>A 1,200-acre urban cultural park with museums, gardens, and the famous San Diego Zoo.</p>
</div>
<div class="card">
<h3>San Diego Zoo</h3>
<p>One of the most visited zoos in the world, home to over 12,000 animals of 650+ species.</p>
</div>
<div class="card">
<h3>La Jolla Cove</h3>
<p>A stunning beach cove surrounded by cliffs, perfect for snorkeling and kayaking.</p>
</div>
<div class="card">
<h3>Gaslamp Quarter</h3>
<p>A vibrant 16-block historic district packed with restaurants, bars, and nightlife.</p>
</div>
<div class="card">
<h3>USS Midway Museum</h3>
<p>An aircraft carrier museum on the San Diego waterfront with 60+ exhibits and 29 restored aircraft.</p>
</div>
<div class="card">
<h3>Coronado Beach</h3>
<p>Consistently ranked among the best beaches in America, with golden sand and the iconic Hotel del Coronado.</p>
</div>
</div>
</section>
<section id="neighborhoods">
<h2>Neighborhoods</h2>
<div class="cards">
<div class="card">
<h3>Pacific Beach</h3>
<p>A lively beach community popular with surfers and young professionals.</p>
</div>
<div class="card">
<h3>North Park</h3>
<p>A trendy neighborhood known for craft breweries, boutiques, and street art.</p>
</div>
<div class="card">
<h3>Old Town</h3>
<p>The historic heart of San Diego with Mexican restaurants and preserved adobe buildings.</p>
</div>
</div>
</section>
<section id="visit">
<h2>Plan Your Visit</h2>
<p>The best time to visit San Diego is from March through November, though the city's mild climate makes it a great destination any time of year. Average temperatures range from 57&deg;F in winter to 76&deg;F in summer.</p>
<div class="highlight">
<p style="font-size: 1.2rem; font-weight: 600; color: #023e8a;">Ready to explore San Diego?</p>
<p style="color: #555;">Start planning your trip to America's Finest City today.</p>
</div>
</section>
<footer>
<p>&copy; 2026 Discover San Diego</p>
</footer>
</body>
</html>