59 lines
2.8 KiB
HTML
59 lines
2.8 KiB
HTML
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Нереальные тесты</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script type="module" src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
<link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
|
|
<link href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet"/>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
<body class="d-flex flex-column">
|
|
<header>
|
|
<nav class="navbar navbar-expand-md navbar-dark">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="/">
|
|
<name>
|
|
<img src="icon.png" class="img-fluid" alt="...">
|
|
Нереальные тесты
|
|
</name>
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
<main class="container-fluid">
|
|
<div class="row w-100 d-flex justify-content-center m-3">
|
|
<img src="image.jpg" style="object-fit: cover; width: 50%; height: 500px;">
|
|
</div>
|
|
|
|
<h3 class="row w-100 d-flex justify-content-center m-1" >Текст вопроса</h3>
|
|
|
|
<div class="row w-100 justify-content-center m-3">
|
|
<form class="col-6 m-0" action="./testInProcess.html" method="get">
|
|
<div class="form-check me-md-3">
|
|
<input class="form-check-input" id="checkbox1" name="checkbox1" type="checkbox">
|
|
<label class="form-check-label" for="checkbox1">ответ 1</label>
|
|
</div>
|
|
<div class="form-check me-md-3">
|
|
<input class="form-check-input" id="checkbox2" name="checkbox2" type="checkbox">
|
|
<label class="form-check-label" for="checkbox2">ответ 2</label>
|
|
</div>
|
|
<div class="form-check me-md-3">
|
|
<input class="form-check-input" id="checkbox3" name="checkbox3" type="checkbox">
|
|
<label class="form-check-label" for="checkbox3">ответ 3</label>
|
|
</div>
|
|
<div class="form-check me-md-3">
|
|
<input class="form-check-input" id="checkbox4" name="checkbox4" type="checkbox">
|
|
<label class="form-check-label" for="checkbox4">ответ 4</label>
|
|
</div>
|
|
<div class="text-center">
|
|
<button class="btn btn-primary w-2 startButton" type="submit">Отправить</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
<footer class="footer d-flex flex-shrink-0 justify-content-center align-items-center">
|
|
Автор, 2022
|
|
</footer>
|
|
</body>
|
|
</html> |