-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomework2.html
More file actions
22 lines (22 loc) · 978 Bytes
/
Copy pathhomework2.html
File metadata and controls
22 lines (22 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html lang="ru">
<head>
<!-- Bootstrap css -->
<link href="/node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="/node_modules/bootstrap/dist/js/bootstrap.min.js" ></script>
<script src="js/homework.js" async></script>
<title> Homework 2 </title>
</head>
<body>
<div class="container mt-4 mb-4">
<h3> Возраст </h3>
<form id="birthday" class="mb-4">
<div class="mb-3">
<label for="date" class="form-label"> Сколько Вам полных лет ? </label>
<input class="form-control" type="number" min="10" max="130" step="1" value="" name="date"/>
</div>
<input type="submit" value="Отправить" class="btn btn-primary">
</form>
<div id="getYearResult" class="thumbnail" style="display: none"></div>
</div>
</body>
</html>