-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.91 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body style="background-color: #fbf8fb">
<div class="container-fluid">
<div class="d-flex justify-content-center align-items-center vh-90">
<div class="d-flex flex-column align-items-center">
<h2 id="question-text">Могу я пригласить тебя на романтический ужин в День святого Валентина?</h1>
<img class="img" id="img-input1" src="assets/question.webp" alt="" height="300px" width="300px">
<img class="img d-none" id="img-input2" src="assets/result.webp" alt="" height="300px" width="300px">
<div class=" mt-3" id="to-hide">
<button class="btn-success btn p-2" id="btn-yes">
Да
</button>
<button class="btn-danger btn mx-3 p-2" id="btn-no">
Нет
</button>
</div>
</div>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script
src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"></script>
<script src="app.js"></script>
</html>