Ben şimdi yeni başladım da böyle bir şey yaptım arkadaşlar. Bu Haberi Duyunca inanamayacaksınız yazısı fotoğrafın üzerine değil de yazının yanında olsun istiyorum bunu nasıl yapabilirim?

Kodları aşağıya ekliyorum.

<!DOCTYPE html>
<html>

<head>
    <title>Tasarım</title>
    <meta charset="utf-8">
    <style type="text/css">
        body {
            background-color: #efefef;
            margin:0;
            padding:0;
        }

        .container {
            background-color: white;
            width: 1100px;
            height: 800px;
            margin: 0 auto;
            padding-top: 10px;
        }

        .container .menu {
            background-color: red;
        }

        .menu {
            background-color: black;
            border-radius: 2px;
            width:     250px;
            height: 50px;
            margin: 0 auto;
            text-align: center;
            vertical-align: middle;
            line-height: 50px;

        }

        .logotext {
            font-size: xx-large;
            color: white;
            font-weight: bold;
            font-family: Tahoma;
        }

        .topnav {
            overflow: hidden;
            background-color: #333;
            width: 400px;
            margin: auto;
            border-radius: 4px;
            margin-top: 5px;
        }

        .topnav a {
            float: left;
            color: #f2f2f2;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            font-size: 17px;
        }

        .topnav a:hover {
            background-color: gray;
            color: white;
        }

        .topnav a.active{
            background-color: green;
            color: white;
        }

        .icerikalani {
            background-color: gray;
            margin: auto;
            margin-top: 10px;
            width: 390px;
            padding-top: 4px;
            overflow: hidden;
        }

        .icerikalani .icerikfoto {
            max-height: 75px;
        }

        .icerik a.baslik {
            font-family: Tahoma;
            font-weight: bolder;
            color: white;
            position: relative;
            top: -60px;


        }
    </style>
</head>

<body>
    <div class="container">
        <div class="menu">    <span class="logotext">Logo Alanı</span>
        </div>
        <div class="topnav">    <a class="active">asfasfsdf</a>
            <a>asfasfsdf</a>
            <a>asfasfsdf</a>
            <a>asfasfsdf</a>
        </div>
        <div class="icerikalani">
            <div class="icerik">
                <img src="https://bit.ly/2X2zcUN" class="icerikfoto">    <a class="baslik">Bu Haberi Duyunca İnanamayacaksınız!</a>
            </div>
        </div>
    </div>
</body>

</html>