33 lines
1.4 KiB
HTML
33 lines
1.4 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<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" />
|
||
|
<link rel="stylesheet" href="main.css"/>
|
||
|
<title>LabWork1</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1 class="text-white mx-2">Добро пожаловать</h1>
|
||
|
</header>
|
||
|
<article>
|
||
|
<div class="m-2">
|
||
|
<input type="text" class="form-control my-2" id="number-1" aria-describedby="basic-addon3">
|
||
|
<input type="text" class="form-control" id="number-2" aria-describedby="basic-addon3">
|
||
|
<div class="my-2">
|
||
|
<button id="sum" type="button" class="btn btn-dark">+</button>
|
||
|
<button id="dif" type="button" class="btn btn-dark">-</button>
|
||
|
<button id="com" type="button" class="btn btn-dark">*</button>
|
||
|
<button id="div" type="button" class="btn btn-dark">/</button>
|
||
|
</div>
|
||
|
<p id="Conclusion">Вывод:</p>
|
||
|
</div>
|
||
|
</article>
|
||
|
<footer><p class="text-white mx-2">Просто сайтик</p></footer>
|
||
|
<script src="Script.js"></script>
|
||
|
</body>
|
||
|
</html>
|