Заголовок: michael wheeler :: какая-то инфа

Внешний вид:
[html]
<style>
    .card-container {
        width: 500px;
        margin: 20px auto;
        background: transparent;
        border: none;
        padding: 20px;
        font-family: 'Tahoma', sans-serif;
        color: #ccc;
    }
    .header-name {
        text-align: center;
        font-size: 22px;
        color: #8c2020;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin-bottom: 20px;
        border-bottom: 1px solid #8c2020;
        padding-bottom: 10px;
    }
    .info-center {
        text-align: center;
        font-size: 11px;
        text-transform: uppercase;
        margin-bottom: 20px;
        line-height: 2;
        color: #aaa;
    }
    .gallery {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    .img-placeholder {
        width: 160px;
        height: 160px;
        background: #1a1a1a;
        border: 1px solid #333;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: #444;
    }
</style>

<div class="card-container">
    <div class="header-name">MIKE WHEELER, 19 y.o.</div>
   
<div class="gallery">
    <div class="img-placeholder">
        <img src="https://64.media.tumblr.com/43a4c4ab0110e79a9f137c7653023a6e/3bd7d79f3cd0eafd-38/s540x810/d9ae5c41e0ad86ac9b0e9bba7279d4eedd8cf436.gif" width="160" height="160" style="object-fit: cover;">
    </div>
    <div class="img-placeholder">
        <img src="https://64.media.tumblr.com/94761126b11b2fe9bdf8cfab59aba98a/3bd7d79f3cd0eafd-33/s540x810/d51e91e74a646591f8c26915fe182e446347e6bf.gif" width="160" height="160" style="object-fit: cover;">
    </div>
</div>

    <div class="info-center">
        <strong>Прототип:</strong> finn wolfhard<br>
    </div>
</div>
[/html]

Код:
[html]
<style>
    .card-container { 
        width: 500px; 
        margin: 20px auto; 
        background: transparent; 
        border: none; 
        padding: 20px; 
        font-family: 'Tahoma', sans-serif; 
        color: #ccc; 
    }
    .header-name { 
        text-align: center; 
        font-size: 22px; 
        color: #8c2020; 
        text-transform: uppercase; 
        letter-spacing: 5px; 
        margin-bottom: 20px; 
        border-bottom: 1px solid #8c2020; 
        padding-bottom: 10px; 
    }
    .info-center { 
        text-align: center; 
        font-size: 11px; 
        text-transform: uppercase; 
        margin-bottom: 20px; 
        line-height: 2; 
        color: #aaa;
    }
    .gallery { 
        display: flex; 
        justify-content: center; 
        gap: 10px; 
        margin-bottom: 20px; 
    }
    .img-placeholder { 
        width: 160px; 
        height: 160px; 
        background: #1a1a1a; 
        border: 1px solid #333; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 10px; 
        color: #444; 
    }
</style>

<div class="card-container">
    <div class="header-name">NAME SURNAME, AGE y.o.</div>
    
<div class="gallery">
    <div class="img-placeholder">
        <img src="GIF/IMAGE 1" width="160" height="160" style="object-fit: cover;">
    </div>
    <div class="img-placeholder">
        <img src="GIF/IMAGE 2" width="160" height="160" style="object-fit: cover;">
    </div>
</div>

    <div class="info-center">
        <strong>Прототип:</strong> имя актёра на англ.<br>
    </div>
</div>
[/html]