Untitled

mail@pastecode.io avatar
unknown
plain_text
7 days ago
3.2 kB
2
Indexable
Never
<!DOCTYPE html>
<html lang="pl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Fryzjerstwo</title>
    <link rel="stylesheet" href="styl8.css">
</head>
<body>
    <section id="lewy1">
        <a href="index.html"><h1>SALON FRYZJERSKI</h1></a>
    </section>
    <section id="prawy1">
        <a href="fryzura.html"><h4>Ceny strzyżenia</h4></a>
        <table>
            <tr>
                <th>Długość włosów</th>
                <th>Cena</th>
            </tr>
            <tr>
                <td>Krótkie</td>
                <td>25</td>
            </tr>
            <tr>
                <td>Średnie</td>
                <td>30</td>
            </tr>
            <tr>
                <td>Półdługie</td>
                <td>40</td>
            </tr>
            <tr>
                <td>Długie</td>
                <td>50</td>
            </tr>
        </table>
    </section>
    <section id="lewy2">
        <img src="obraz2.jpg" alt="Strzyżenie">
    </section>
    <section id="prawy2">
        <img src="obraz1.jpg" alt="Fryzjerka">
     </section>
    <section id="lewy3">
        <p>Witaj! Miło nam, że odwiedziłeś nasz salon. Sprawdź promocje!</p>
        <h4>Kontakt: 444 555 666</h4>
    </section>
    

    <footer>
        <p>Autor: Kacper Spyrka</p>
    </footer>

</body>
</html>





<!DOCTYPE html>
<html lang="pl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Fryzjerstwo</title>
    <link rel="stylesheet" href="styl8.css">
</head>
<body>
    <section id="lewy1">
        <a href="index.html"><h1>SALON FRYZJERSKI</h1></a>
    </section>
    <section id="lewy2">
        <h2>PROMOCJA!</h2>
        <input type="radio" id="radio1" name="radio"> Krotkie <br>
        <input type="radio" id="radio2" name="radio"> Srednie <br>
        <input type="radio" id="radio3" name="radio"> Poldlugie <br>
        <input type="radio" id="radio4" name="radio"> Dlugie <br>
        <button onclick="poka_promo()">Odkryj promocję</button>
    </section>
    <section id="lewy3">
        <p>Witaj! Miło nam, że odwiedziłeś nasz salon. Sprawdź promocje!</p>
        <h4>Kontakt: 444 555 666</h4>
    </section>
    <section id="prawy1">
        <a href="fryzura.html"><h4>Ceny strzyżenia</h4></a>
        <table>
            <tr>
                <th>Długość włosów</th>
                <th>Cena</th>
            </tr>
            <tr>
                <td>Krótkie</td>
                <td>25</td>
            </tr>
            <tr>
                <td>Średnie</td>
                <td>30</td>
            </tr>
            <tr>
                <td>Półdługie</td>
                <td>40</td>
            </tr>
            <tr>
                <td>Długie</td>
                <td>50</td>
            </tr>
        </table>
    </section>
    <section id="prawy2">
       <img src="obraz1.jpg" alt="Fryzjerka">
    </section>

    <footer>
        <p>Autor: Kacper Spyrka</p>
    </footer>

</body>
</html>
Leave a Comment