-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecond.html
More file actions
87 lines (78 loc) · 2.06 KB
/
second.html
File metadata and controls
87 lines (78 loc) · 2.06 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="theme-color" content="#667eea">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ask Her Out</title>
<style>
/* author - deepak tiwari */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #ffe5e5;
}
.container {
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
gap: 20px;
max-width: 500px;
margin: 20px;
}
.container .tenor-gif-embed {
max-width: 200px;
}
.container .btn {
display: flex;
gap: 25px;
}
.btn a {
text-decoration: none;
color: #111;
background: #fff;
padding: 10px 25px;
border-radius: 8px;
box-shadow: 0.5rem 1rem 3rem hsl(0, 0%, 0%, 0.3);
transition: 0.2s ease;
}
</style>
</head>
<body>
<div class="container">
<div
class="tenor-gif-embed"
data-postid="22050818"
data-share-method="host"
data-aspect-ratio="1"
data-width="100%"
>
<a href="https://tenor.com/view/mochi-gif-22050818">Mochi Sticker</a>
from
<a href="https://tenor.com/search/mochi-stickers">Mochi Stickers</a>
</div>
<script
type="text/javascript"
async
src="https://tenor.com/embed.js"
></script>
<h1>Ek bar aur soch lo! 🙄</h1>
<p>itni jaldi nahi matt bolo 😥</p>
<div class="btn">
<a href="yes.html">Yes</a>
<a href="lastno.html">No</a>
</div>
</div>
</body>
</html>