Загрузка данных


<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Визитка</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>

    <header>
        <img src="https://api.dicebear.com/7.x/avataaars/svg?seed=Alex" alt="Аватар">
        <h1>Алекс Код</h1>
        <p>Frontend-разработчик</p>
    </header>

    <main>
        <a href="#" class="btn">Портфолио</a>
        <a href="#" class="btn">GitHub</a>
        <a href="#" class="btn">Telegram</a>
        <a href="#" class="btn">YouTube</a>
        <a href="#" class="btn">Написать</a>
    </main>

    <footer>
        <a href="#">VK</a>
        <a href="#">Instagram</a>
        <a href="#">LinkedIn</a>
    </footer>

</body>
</html>


body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background: linear-gradient(#c7d2fe, #fbcfe8);
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 10px;
}

h1 {
    font-size: 20px;
    margin: 0 0 5px;
}

p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 250px;
}

a.btn {
    display: block;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: #333;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

a.btn:hover {
    transform: scale(1.03);
    background: rgba(255,255,255,0.85);
}

footer {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

footer a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
}