Görsel HTML olarak nasıl tasarlanır?

EC28

Decapat
Katılım
5 Ekim 2021
Mesajlar
20
Yer
İstanbul
Daha fazla  
Cinsiyet
Erkek
Meslek
Freelancer
Görseldeki tasarımı HTML olarak tasarlamak istiyorum ama tam olarak beceremedim yardımcı olabilecek arkadaşlar var mı?
 

Dosya Ekleri

  • 29ca43ce-1cb3-465d-8a7f-bb58b9426463.png
    85,4 KB · Görüntüleme: 86
Ustunde duzenlemeleri yaparsin. kolay gelsin.
HTML:
<!DOCTYPE html>
<header>
</header>
<style>
.card {
    width: 550px;
    border: 1px solid #ddd;
    padding: 10px;
}
.des {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.info {
    display: flex;
    align-items: center;
    justify-content: start;
}
.h-left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
img {
    max-width: 60px;
    height: auto;
    width: auto;
}
.logo-text {
    margin-left: 10px;
    font-size: 25px;
    display: flex;
}
.h-right {
    width: 50%;
    height: auto;
}
.title-text {
    align-items: flex-start;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
}
span.name {
    font-size: 20px;
    color: cornflowerblue;
    font-weight: 800;
}
span.title {
    font-size: 17px;
    font-weight: 400;
    color: cornflowerblue;
}
.r-text {
    margin-left: 50%;
}
table.detail {
    color: steelblue;
}
</style>
<body>
<div class="card">
    <div class="des">
    <div class="info">
        <div class="h-left">
        <img src="https://placehold.co/60x60/png" alt=""/>
    <div class="logo-text">GURAY</div>
        </div>
        <div class="h-right">
        <div class="title-text">
        <span class="name">Yilmaz GURAY</span>
        <span class="title">Kurucu / Founder</span>
        </div>
    </div>
    </div>
    <div class="r-text">
        <table class="detail">
            <tr>
                <td>T:</td>
                <td>+90 (216) 540 68 92 (bpx)</td>
            </tr>
            <tr>
                <td>F:</td>
                <td>+90 (216) 540 68 98</td>
            </tr>
            <tr>
                <td>W:</td>
                <td>gurayaliminyum.com.tr</td>
            </tr>
            <tr>
                <td>M:</td>
                <td>İmes San. Sit. C Blok 302. Sok.<br>
                    No:6 Dudullu / Ümranie,<br>
                    İstabul, Türkiye
                </td>
            </tr>
        </table>
    </div>   
</div>
</div>
</body>
<footer></footer>
 
Bu siteyi kullanmak için çerezler gereklidir. Siteyi kullanmaya devam etmek için çerezleri kabul etmelisiniz. Daha Fazlasını Öğren.…