HTML & CSS div etiketi ile yapılan bir stadyum ;

Katılım
9 Ara 2020
Konular
71
Mesajlar
255
Çözümler
1
Tepki puanı
218
Puanları
2,110
HTML:
<!DOCTYPE html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]>      <html class="no-js"> <!--<![endif]-->
<html>

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>css deneme7</title>
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="">


    <style type="text/css">
        .stadyum {
            width: 700px;
            height: 865px;
            margin: 50px auto;
            border-left: 120px solid #ddd;
            border-right: 120px solid #ddd;
            border-top: 120px solid #ddd;
            border-bottom: 120px solid #58f55c;
            border-radius: 200px;
            background: #58f55c;
        }

        .aciktribün {
            width: 700px;
            height: 865px;
            background: #58f55c;
            border-radius: 150px 150px 0 0;
        }

        .sahakenari {
            width: 550px;
            height: 640px;
            background: #360;
            margin: 100px auto;
            border-radius: 100px;
            padding: 70px 0 0 0;

        }

        .saha {
            width: 400px;
            height: 600px;
            background: #0c0;
            margin: 0 auto;
            border: 1px solid white;
        }

        .ustcezasahasi {
            width: 250px;
            height: 100px;
            border-left: 1px solid white;
            border-right: 1px solid white;
            border-bottom: 1px solid white;
            margin: 0 auto;
        }

        .altcezasahasi {
            width: 250px;
            height: 100px;
            border-left: 1px solid white;
            border-right: 1px solid white;
            border-top: 1px solid white;
            margin: 0 auto;
        }

        .ustaltipas {
            width: 120px;
            height: 50px;
            border-left: 1px solid white;
            border-right: 1px solid white;
            border-bottom: 1px solid white;
            margin: 0 auto;

        }

        .altaltipas {
            width: 120px;
            height: 50px;
            border-left: 1px solid white;
            border-right: 1px solid white;
            border-top: 1px solid white;
            margin: 48px auto;

        }

        .ustyay {
            width: 100px;
            height: 40px;
            border-left: 1px solid white;
            border-right: 1px solid white;
            border-bottom: 1px solid white;
            margin: 0 auto;
            border-radius: 0 0 55px 55px;
        }

        .altyay {
            width: 100px;
            height: 40px;
            border-left: 1px solid white;
            border-right: 1px solid white;
            border-top: 1px solid white;
            margin: 103px auto 0 auto;
            border-radius: 55px 55px 0 0;
        }

        .ortacizgi {
            width: 400px;
            height: 1px;
            background: white;
            margin: 150px 0 0 0;

        }

        .ortayay {
            width: 120px;
            height: 120px;
            border-radius: 60px;
            border: 1px solid #fff;
            margin: -60px auto 0 auto;
        }
    </style>
</head>

<body>
    <!--[if lt IE 7]>
            <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
        <![endif]-->

    <script src="" async defer></script>
    <div class="stadyum">
        <div class="aciktribün">
            <div class="sahakenari">
                <div class="saha">
                    <div class="ustcezasahasi">
                        <div class="ustaltipas"></div>
                    </div>
                    <div class="ustyay"></div>
                    <div class="ortacizgi"></div>
                    <div class="ortayay"></div>
                    <div class="altyay"></div>
                    <div class="altcezasahasi">
                        <div class="altaltipas"></div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</body>

</html>

Not:Bu kodu Youtube:Web Odası kanalı sayesinde yazdım.
resim_2021-01-04_203806.png