add files

This commit is contained in:
Andrey Kuvshinov
2025-12-20 00:30:35 +03:00
parent 69ebbd1e70
commit cdb493948d
21 changed files with 1684 additions and 2 deletions

163
test3.html Normal file
View File

@@ -0,0 +1,163 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>СПИКЕР ГОДА - Агроэксперт</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
background-color: white;
padding: 40px;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
border-radius: 8px;
}
.header {
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 2px solid #eee;
}
.main-title {
font-size: 48px;
color: #2c3e50;
margin-bottom: 10px;
font-weight: 800;
letter-spacing: 1px;
text-transform: uppercase;
}
.subtitle {
font-size: 22px;
color: #7f8c8d;
margin-bottom: 25px;
font-weight: 300;
}
.content {
max-width: 900px;
margin: 0 auto;
}
.description {
font-size: 18px;
line-height: 1.8;
margin-bottom: 30px;
color: #34495e;
}
.highlight {
color: #e74c3c;
font-weight: bold;
}
.data-source {
background-color: #f8f9fa;
padding: 15px;
border-left: 4px solid #3498db;
margin-bottom: 30px;
font-style: italic;
color: #555;
}
.footer {
margin-top: 40px;
text-align: center;
color: #95a5a6;
font-size: 14px;
padding-top: 20px;
border-top: 1px solid #eee;
}
.magazine-name {
font-weight: bold;
color: #2c3e50;
}
.year {
font-weight: bold;
color: #e74c3c;
}
.professions {
color: #27ae60;
font-weight: bold;
}
@media (max-width: 768px) {
.container {
padding: 20px;
}
.main-title {
font-size: 36px;
}
.subtitle {
font-size: 18px;
}
.description {
font-size: 16px;
}
}
@media (max-width: 480px) {
.main-title {
font-size: 28px;
}
.subtitle {
font-size: 16px;
}
body {
padding: 10px;
}
}
</style>
</head>
<body>
<div class="container">
<header class="header">
<h1 class="main-title">СПИКЕР ГОДА</h1>
<p class="subtitle">Топ-10 спикеров года по версии издания «Агроэксперт»</p>
</header>
<main class="content">
<div class="data-source">
Рейтинг составлен на основе big data: мы проанализировали упоминания во всех публикациях сайта за <span class="year">2025 год</span>.
</div>
<p class="description">
Мы с гордостью представляем вам топ-10 спикеров года по версии издания <span class="magazine-name">«Агроэксперт»</span>. Он составлен на основе big data: мы проанализировали упоминания во всех публикациях сайта за <span class="year">2025 год</span>.
</p>
<p class="description">
В рейтинг вошли люди, которые открывают новые горизонты агропромышленного комплекса России: <span class="professions">бизнесмены, чиновники и эксперты отрасли</span>.
</p>
</main>
<footer class="footer">
<p>Издание «Агроэксперт» • 2025 год</p>
</footer>
</div>
</body>
</html>