Jump to content

Recommended Posts

Posted

Salut Tuturor am intampinat o problema, as vrea sa stiu cun fac din asta :  C6bU32p.png

asta YSZ36eC.png

 

ma refer la spatiul acela alb 

 

codul cu pricina

<!DOCTYPE html>
<html>
<head>

    <meta charset="utf-8" />
    <title>Turism in Romania si Bulgaria</title>
    <style>
        p {font-family: "Comic Sans MS";color: white; }
     
    </style>
          
</head>
<body>
    <div style="display:inline-block;background-color:darkblue;">
        <p> Click pe Munte sau Mare pentru a <br /> vedea oferta noastra</p>

        <div style="float:left">
            <a href="/pagina2.html" title="pagina2"><img src="2.jpg" alt="munte" style="width:300px; height:300px; margin:20px;" /> </a>

        </div>
    &nbsp;
    &nbsp;
    &nbsp;
    &nbsp;
    &nbsp;
    &nbsp;
    &nbsp;

        <div style="float:right">
            <a href="/pagina2.html" title="pagina2"><img src="3.jpg" alt="mare" style="width:300px;height:300px;margin:20px" /> </a>
        </div>
        </divstyle>

       

        <div align="center">
            <p> VACANTA PLACUTA!</p>
        </div>

</body>
</html>
<br>




Multumesc  anticipat! Ofer +1

 

Posted (edited)
Spoiler

<!DOCTYPE html>
<html lang="ro">
<head>
    <meta charset="utf-8">
    <title>Turism in Romania si Bulgaria</title>
    <style>
        p { font-family: "Comic Sans MS"; color: white; }

        .content-wrapper {
            max-width: 800px;
            margin: 0 auto;
            padding: 30px;
            background-color: darkblue;
        }

        .content-wrapper:after {
            content: '';
            clear: both;
            display: table;
        }

        .content-wrapper p {
            text-align: center;
        }

        .munte {
            float: left;
        }

        .mare {
            float: right;
        }

        .welcome-message {
            background-color: darkblue;
            width: 750px;
            margin: 0 auto;
            padding: 20px;
            margin-top: 20px;
        }

        .welcome-message p {
            text-align: center;
        }
    </style>    
</head>
<body>
    <div class="content-wrapper">
        <p>Click pe Munte sau Mare pentru a <br /> vedea oferta noastra</p>
        <div class="munte">
            <a href="/pagina2.html" title="pagina2"><img src="2.jpg" alt="munte" style="width:300px; height:300px; margin:20px;"></a>
        </div>

        <div class="mare">
            <a href="/pagina2.html" title="pagina2"><img src="3.jpg" alt="mare" style="width:300px;height:300px;margin:20px"></a>
        </div>
    </div>

    <div class="welcome-message">
        <p> VACANTA PLACUTA!</p>
    </div>
</body>
</html>

 

 

Sper că te-a ajutat! Uite și un preview:

https://imgur.com/a/8UWycpW

Edited by Daizuke
  • Like 1

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.