-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1008 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Valentine's Day Card</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link href="index.css" rel="stylesheet" />
</head>
<body>
<div class="d-flex flex-column align-items-center justify-content-center container">
<div class="d-flex mt-5">
<img src="cute-love-bear-roses-ou7zho5oosxnpo6k.gif" id="gifs" style="width: 400px; height: 400px" />
</div>
<div class="mt-4">
<h2 id="question" class="questionStr">Will you be my Valentine !?</h3>
</div>
<div class="m-4">
<div class="yes_btn" id="yesBtn" onclick="yesBtnClickEvent()">YES</div>
<div class="no_btn" id="noBtn" onclick="noBtnClickEvent(this)">No</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>