Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Автомобили</title>
- <style>
- input[type=text], select {
- width: 100%;
- padding: 12px 20px;
- margin: 8px 0;
- display: inline-block;
- border: 1px solid #ccc;
- border-radius: 4px;
- box-sizing: border-box;
- }
- input[type=submit] {
- width: 100%;
- background-color: #ff9933;
- color: white;
- padding: 14px 20px;
- margin: 8px 0;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- }
- input[type=submit]:hover {
- background-color: #ff9999;
- }
- div {
- border-radius: 5px;
- background-color: #f2f2f2;
- padding: 20px;
- }
- </style>
- </head>
- <body>
- <h2 align="center">Вкарай нова кола</h2>
- <div>
- <form action="/insertcar.php">
- <label for="fname">Марка, модел:</label>
- <input type="text" name="make" placeholder="Марка модел..">
- <label for="lname">Oписание:</label>
- <input type="text" name="desrc" placeholder="Описание..">
- <label for="lname">Пробег:</label>
- <input type="text" name="milage" placeholder="Пробег..">
- <label for="lname">Линк към снимка</label>
- <input type="text" name="imglink" placeholder="Линк..">
- <input type="submit" value="Въведи">
- </form>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement