Презентация
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IT Цитаты</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
background: url('https://avatars.mds.yandex.net/i?id=a24c17e9a63998038875adbb61051fc3_l-5241338-images-thumbs&n=13') center/cover;
color: #fff;
min-height: 100vh;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
min-height: 100vh;
display: grid;
grid-template-columns: 30% 70%;
gap: 40px;
align-items: center;
}
.quote {
font-size: 14px;
line-height: 1.5;
padding: 15px;
background: rgba(0,0,0,0.4);
border-radius: 10px;
backdrop-filter: blur(5px);
border-left: 3px solid #ff2d55;
margin-bottom: 20px;
}
.quote-author {
font-size: 12px;
color: rgba(255,255,255,0.7);
margin-top: 8px;
}
.phone-number {
display: block;
font-size: 18px;
font-weight: 700;
color: #ff2d55;
text-decoration: none;
text-align: center;
}
.website-frame {
width: 100%;
height: 600px;
border: 3px solid rgba(255,45,85,0.5);
border-radius: 15px;
overflow: hidden;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
}
.website-frame iframe {
width: 100%;
height: 100%;
border: none;
}
@media (max-width: 768px) {
.container {
grid-template-columns: 1fr;
padding: 20px;
}
.website-frame {
height: 400px;
}
}
</style>
</head>
<body>
<div class="container">
<div>
<div class="quote">
"Сначала реши проблему. Потом пиши код."
<div class="quote-author">— Джон Джонсон</div>
</div>
<div class="quote">
"Любой дурак может написать код, который поймёт компьютер. Хорошие программисты пишут код, который поймут люди."
<div class="quote-author">— Мартин Фаулер</div>
</div>
<a href="tel:89296058506" class="phone-number">📞 8 (929) 605-85-06</a>
</div>
<div class="website-frame">
<iframe src="https://sloboda69.ru/" title="Website"></iframe>
</div>
</div>
</body>
</html>
Начать дискуссию