Files
myweb1/mockup1.html
2026-07-28 15:14:34 +03:00

104 lines
3.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MyWeb1 - AI Model Differences</title>
<link rel="stylesheet" href="css/style.css">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: #0f0f1a; color: #fff; }
.hero {
text-align: center;
padding: 100px 20px 60px;
background: linear-gradient(135deg, #0f0f1a 0%, #1a1a3e 50%, #0f0f1a 100%);
}
.hero h1 { font-size: 3rem; margin-bottom: 10px; }
.hero h1 span { color: #7c5cfc; }
.hero p { font-size: 1.2rem; color: #aaa; max-width: 600px; margin: 0 auto; }
.cards {
display: flex;
justify-content: center;
gap: 30px;
padding: 60px 20px;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}
.card {
background: #1a1a2e;
border: 1px solid #2a2a4a;
border-radius: 16px;
padding: 40px 30px;
width: 340px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(124, 92, 252, 0.15);
}
.card-icon { font-size: 3rem; margin-bottom: 20px; }
.card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card p { color: #999; line-height: 1.6; }
.table-section {
max-width: 1100px;
margin: 0 auto;
padding: 60px 20px;
}
.table-section h2 { text-align: center; font-size: 2rem; margin-bottom: 40px; color: #7c5cfc; }
table { width: 100%; border-collapse: collapse; background: #1a1a2e; border-radius: 12px; overflow: hidden; }
th { background: #7c5cfc; color: #fff; padding: 16px 20px; text-align: left; }
td { padding: 14px 20px; border-bottom: 1px solid #2a2a4a; color: #ccc; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #22223a; }
footer { text-align: center; padding: 40px; color: #555; border-top: 1px solid #2a2a4a; }
</style>
</head>
<body>
<section class="hero">
<h1>AI <span>Model</span> Differences</h1>
<p>Explore how AI models compare in architecture, performance, and real-world capabilities.</p>
</section>
<section class="cards">
<div class="card">
<div class="card-icon">🧠</div>
<h3>Architecture</h3>
<p>Understand the structural differences between transformer, CNN, RNN, and hybrid models.</p>
</div>
<div class="card">
<div class="card-icon"></div>
<h3>Performance</h3>
<p>Compare speed, accuracy, and resource usage across leading AI models.</p>
</div>
<div class="card">
<div class="card-icon">🎯</div>
<h3>Use Cases</h3>
<p>Discover which model works best for text, images, audio, and multimodal tasks.</p>
</div>
</section>
<section class="table-section">
<h2>Quick Comparison</h2>
<table>
<thead>
<tr><th>Model</th><th>Type</th><th>Best For</th><th>Parameters</th></tr>
</thead>
<tbody>
<tr><td>GPT-4</td><td>Transformer (LLM)</td><td>Text Generation</td><td>~1.7T</td></tr>
<tr><td>ResNet-50</td><td>CNN</td><td>Image Classification</td><td>25M</td></tr>
<tr><td>Whisper</td><td>Encoder-Decoder</td><td>Speech Recognition</td><td>1.5B</td></tr>
<tr><td>Stable Diffusion</td><td>Diffusion Model</td><td>Image Generation</td><td>~1B</td></tr>
</tbody>
</table>
</section>
<footer>MyWeb1 &copy; 2026</footer>
</body>
</html>