IP_Razzhivin_PIBD-22/frontend/index.html
Александр Разживин 7b39744930 lab 1
2023-04-18 10:21:04 +04:00

43 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<script 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" />
<title>Main</title>
</head>
<body>
<div id="root-div">
<header>
Alexander Razzhivin
</header>
<div class="content-div workarea">
<form id="form">
<label for="number-1" class="form-label">Введите строку</label>
<input type="text" class="form-control" placeholder="Write smth in me" id="input" />
<div class = "selectbutton">
<button type="button" class="btn btn-primary mx-1" id="upperbutton">Upper</button>
<button type="button" class="btn btn-primary mx-1" id="lowerbutton">Lower</button>
<button type="button" class="btn btn-primary mx-1" id="reversebutton">Reverse</button>
<button type="button" class="btn btn-primary mx-1" id="shufflebutton">Shuffle</button>
<button type="button" class="btn btn-primary mx-1" id="dop">16</button>
</div>
<div>
<label for="output" class="form-label">Отвт</label>
<input type="text" readonly class="form-control" placeholder = "Wait result in me" id="output" />
</div>
</form>
</div>
</div>
<footer>
Footer
</footer>
</div>
<script src="script.js"></script>
</body>
</html>