IP_Malafeev_KrutieLabi/lab3/page4.html

80 lines
4.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Главная</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body class="d-flex flex-column h-100">
<header>
<nav class="navbar navbar-explad-lg" style="background-color: aquamarine;">
<div class="d-flex flex-column mb-3">
<div class="p-2"><a href="index.html"><img src="source/logo.png" width="200px" height="80px" alt="logo"></a></div>
</div>
<div class="d-flex justify-content-around">
<div class="p-2"><a id="sslk" href="page2.html" style="font-size: 20px;">Услуги</a></div>
<div class="p-2"><a id="sslk" href="page3.html" style="font-size: 20px;">Вакансии</a></div>
</div>
<div class="d-flex justify-content-end">
<div class="p-2"><img src="source/phone.png" alt="phone" width="20px" height="20px"></div>
<div class="p-2"><p style="font-size: 20px;">+7 937 811 91 41</p></div>
</div>
</nav>
</header>
<article>
<div class="d-flex p-2 inptt">
<form action="page3.html" method="get" style="width: 100%;">
<div class="form-item">
<label for="lastname">Фамилия</label>
<input id="lastname" name="lastname" class="form-control" type="text" required>
</div>
<div class="form-item">
<label for="firstname">Имя</label>
<input id="firstname" name="firstname" class="form-control" type="text" required>
</div>
<div class="form-item">
<label for="email">E-mail</label>
<input id="email" name="email" class="form-control" type="email" placeholder="name@example.ru" required>
</div>
<div class="form-item">
<label for="date">Дата Рождения</label>
<input id="date" name="date" class="form-control" type="date" required>
</div>
<div class="form-item">
<label for="aboutme">О себе</label>
<input id="aboutme" name="aboutme" class="form-control" type="text" required>
</div>
<button type="button" class="btn btn-primary btnsend" data-bs-toggle="modal" data-bs-target="#exampleModal">Отправить</button>
</form>
</div>
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">ЛОВУШКА ДЖОКЕРА</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Закрыть"></button>
</div>
<div class="modal-body">
<img src="source/joker.jpg" width="400px" height="400px" alt="HAHAHA">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Грустить. Ты в ловушке.</button>
</div>
</div>
</div>
</div>
</article>
<footer class="footer mt-auto" style="background-color: aquamarine;">
<div class="containerok fixed bottom-0">
<div class="d-flex">
<div class="p-2"><img src="source/logo.png" class="img-fluid" alt="logo"></div>
<div class="p-2 flex-grow-1"><p>Время работы:<br>Пн-пт 08:00 - 20:00<br>Сб-Вс 10:00 - 20:00</p>
</div>
</div>
</div>
</footer>
</body>
</html>