https://s3-us-west-2.amazonaws.com/secure.notion-static.com/8915199b-d20a-4085-93f0-2f5d3819dda0/Untitled.png

HTML

<!DOCTYPE html>
<html lang="ja">

    <head>
        <meta charset="utf-8">
        <title>taro</title>
        <link rel="icon" href="favicon.ico">
        <meta name="description" content="taronopoto">
        <link rel="stylesheet" href="css/styles.css">
 
    </head>
    <body>
        <header>
            <div class="container">
                <div class="icon">
                    <img src="img\\taro.png" width="120" height="120">
                </div>
                <div class="info">
                    <h1>sample</h1>
                    <p>デザイナー見習い</p>
                    <ul>
                        <li>
                            <a href="<https://7days10million.com/>" target="_blank">
                                <img src="img/blog.png" width="20" height="20">
                            </a>
                        </li>
                        <li>
                            <a href="<https://7days10million.com/>" target="_blank">
                                <img src="img/photos.png" width="20" height="20">
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
        </header>
        <section class="works">
            <h1>works</h1>
            <section>
                <img src="img/work1.png" width="400" height="260">
                <h1>勇者ゲーム</h1>
                <p>楽しいアプリです。楽しいアプリです。楽しいアプリです。楽しいアプリです。楽しいアプリです。楽しいアプリです。</p>
            </section>
            <section>
                <img src="img/work2.png" width="400" height="260">
                <h1>宝探しゲーム</h1>
                <p>楽しいアプリです。楽しいアプリです。楽しいアプリです。楽しいアプリです。楽しいアプリです。楽しいアプリです。</p>
            </section>
            <section>
                <img src="img/work3.png" width="400" height="260">
                <h1>神経衰弱</h1>
                <p>楽しいアプリです。楽しいアプリです。楽しいアプリです。楽しいアプリです。楽しいアプリです。楽しいアプリです。</p>
            </section>
        </section>

        <footer>
            <p>(c)sample.com</p>
        </footer>
        
    </body>
</html>

CSS

body{
    color: #333333;
    font-family:Verdana,sans-serif;
    margin:0;
}

header{
    background-color: #efefef;
    padding-top: 32px;
    padding-bottom: 32px;
}

.container{
    /* background-color: pink; */
    width:400px;
    margin-left: auto;
    margin-right: auto;
    display:flex;
    align-items:center;
}

.icon{
    /* background-color: skyblue; */
}

.icon img{
    border-radius:50%;
    border-width:4px;
    border-style:solid;
    border-color: white;

}
.info{
    /* background-color:tomato ; */
    margin-left: 32px;
}

.info h1{
    font-weight: normal;
    font-size: 24px;
    margin:0;
}
.info p{
    margin:0;
    margin-bottom:16px;
    margin-top:10px;
}
.info ul{
    margin:0;
    padding:0;
    list-style-type: none;
    display:flex;
}
.info ul li{
    margin-right:8px;
}
.works{
    width:400px;
    margin-left:auto;
    margin-right:auto;
}
.works > h1{
    font-weight:normal;
    font-size:24px;
    text-align:center;
    margin-top:60px;
    margin-bottom:60px;

}
.works > section{
    margin-bottom:60px;
}

.works > section > h1{
    font-weight:normal;
}

.works p {
    line-height:1.8;
}

footer p{
    text-align:center;
    font-size:14px;
    margin-bottom:60px;
    color:gray;

}