Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!--
Copyright (c) [2024] [ Анна, сайт https://web-domsolnca.ru]
-->

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Форма для договора</title>
    <link rel="stylesheet" href="style.css">

</head>
<body>
    <form action="new_file.php" method="post" id="myForm" accept-charset="UTF-8" class="form">
        <h2>Форма для договора с юр лицом</h2>
        <div class="form-container">
            <div class="form-column">
                <p type="Наименование компании:"><input type="text" id="company_name" name="company_name" placeholder="Наименование компании" required></p>
                <p type="ФИО руководителя:"><input type="text" id="director_name" name="director_name" placeholder="ФИО руководителя" required></p>
                <p type="Юридический адрес:"><input type="text" id="legal_address" name="legal_address" placeholder="Юридический адрес" required></p>
                <p type="Должность руководителя:"><input type="text" id="director_position" name="director_position" placeholder="Должность руководителя" required></p>
                <p type="ИНН компании:"><input type="text" id="inn_company" name="inn_company" placeholder="ИНН компании" required></p>
                <p type="КПП:"><input type="text" id="kpp" name="kpp" placeholder="КПП" required></p>
                <p type="ОГРН:"><input type="text" id="ogrn" name="ogrn" placeholder="ОГРН" required></p>
            </div>
            <div class="form-column">
                <p type="Казначейский счет:"><input type="text" id="treasury_account" name="treasury_account" placeholder="Казначейский счет" required></p>
                <p type="Единый казначейский счет:"><input type="text" id="unified_treasury_account" name="unified_treasury_account" placeholder="Единый казначейский счет" required></p>
                <p type="Лицевой счет:"><input type="text" id="personal_account" name="personal_account" placeholder="Лицевой счет" required></p>
                <p type="БИК банка:"><input type="text" id="bank_bik" name="bank_bik" placeholder="БИК банка" required></p>
                <p type="Наименование банка:"><input type="text" id="bank_name" name="bank_name" placeholder="Наименование банка" required></p>
                <p type="Количество коллективов:">
                    <select id="team_count" name="team_count" required>
                        <option value="" disabled selected hidden>Выберите количество коллективов</option>
                        <option value="1">1</option>
                        <option value="2">2</option>
                        <option value="3">3</option>
                        <option value="4">4</option>
                        <option value="5">5</option>
                        <option value="6">6</option>
                        <option value="7">7</option>
                        <option value="8">8</option>
                        <option value="9">9</option>
                        <option value="10">10</option>
                    </select>
                </p>
                <p type="ФИО контактного лица:"><input type="text" id="contact_person" name="contact_person" placeholder="ФИО контактного лица" required></p>
                <p type="Телефон контактного лица:"><input type="tel" id="contact_phone" name="contact_phone" placeholder="Телефон контактного лица" required></p>
                <p type="E-mail контактного лица:"><input type="email" id="contact_email" name="contact_email" placeholder="E-mail контактного лица" required></p>
            </div>
        </div>

        <div>
            <p id="totalCost">Общая стоимость: 5000 рублей</p>
        </div>

        <button type="submit">Отправить</button>
<div class="contact-info">
  <span class="name"></span> Название
            <span class="fa fa-phone"></span>+7 (831) 123 45 67
            <span class="fa fa-envelope-o"></span> contact@e-mail.ru
        </div>
    </form>
  <button type="button" class="contact-button">
    <a href="https://web-domsolnca.ru">
    <img src="https://i.postimg.cc/CMfVgsSQ/send.png" alt="Сайт">
</button>
   <script src="script.js"></script>

</body>
</html>
              
            
!

CSS

              
                body {
    /*background: #cee3f2;*/
  background: #e6e6fa;
    margin: 0;
}

.form {
    width: 480px;
    background: #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 0 40px -10px #000;
    margin: 50px auto;
    padding: 30px 30px;
    max-width: calc(100vw - 10px);
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    font-size: 16px;
}

h2 {
    margin: 10px 0;
    padding-bottom: 10px;
    width: 270px;
    color: #78788c;
    border-bottom: 3px solid #78788c;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
}

.form-column {
    width: 100%;
}

input, select {
    width: calc(100% - 12px);
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all .3s;
    border-bottom: 2px solid #bebed2;
}

input:focus, select:focus {
    border-bottom: 2px solid #78788c;
}

label {
    display: block;
    margin-bottom: 5px;
}

.contact-info {
    margin-top: 20px;
    font-size: 14px;
    color: #78788c;
    text-align: center;
}

/* КОНТАКТЫ*/
.contact-info {
    content: 'Hi';
    position: absolute;
    bottom: -30px; /* смещение контактов*/
    right: -50px;
    background: #50505a;
    color: #fff;
    width: 400px;
  
    padding: 13px 4px 16px 0;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 10px 10px 40px -14px #000;
}

.contact-info span {
    margin: 0 5px 0 15px;
}

/*КНОПКА ОТПРАВИТЬ*/
button {
    width: calc(100% - 12px);
    padding: 8px 12px;
    margin-top: 20px;
    margin-bottom: 30px; /* Отступ вниз */
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #50505a;
    background: 0;
  font-size: 16px;
    color: #50505a;
    cursor: pointer;
    transition: all .3s;
   border-radius: 6px;
}

button:hover {
    background:#78788c;
    color:#FFFFFF;
}


/* Медиа-запрос для мобильных устройств */
@media only screen and (max-width: 600px) {
    .form {
        width: 90%;
        max-width: 90%;
        margin-bottom: 70px; /* Увеличиваем отступ снизу формы на высоту кнопки плюс желаемый отступ */
    }

     
    .contact-info {
        font-size: 10px; /* уменьшаем размер шрифта для мобильных устройств */
        bottom: -30px; /* смещение контактов*/
        right: 30px;
        width: 200px;
    }
}

/*КНОПКА АВТОРА для мобильной версии*/
@media only screen and (max-width: 600px) {
    .contact-button {
        position: relative;
        bottom: 30px; /* Расположение от нижнего края */
        left: 50px; /* Отступ от левого края */
        background-color: #50505a;
        border: none;
        padding: 10px;
        width: 30px; /* Размер кнопки */
        height: 30px; /* Размер кнопки */
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
  
  .contact-button img {
    width: 20px; /* Размер изображения */
    height: auto;
}
}

/*КНОПКА АВТОРА для ПК*/
@media only screen and (min-width: 601px) {
.contact-button {
    bottom: 0; /* Расположение внизу экрана */
    left: 50%; /* Отступ от левого края */
    background-color: #50505a;
    border: none;
    padding: 10px;
    width: 50px; /* Размер кнопки */
    height: 50px; /* Размер кнопки */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
transform: translateX(900%); /* Центрируем кнопку по горизонтали */
}



.contact-button:hover {
    background-color: #ddd;
}

.contact-button img {
    width: 30px; /* Размер изображения */
    height: auto;
}

.contact-button:hover::after {
    content: "Связь с автором формы";
    position: absolute;
    bottom: -30px; /* Расположение надписи от нижнего края */
    right: 50%; /* Расположение надписи по горизонтали */
    background-color: #000;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1;
    transform: translateX(50%); /* Центрируем текст */
}
  }
              
            
!

JS

              
                 // JavaScript и php скрыты автором
              
            
!
999px

Console