-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcooked20.html
148 lines (114 loc) · 4.06 KB
/
cooked20.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cooked</title>
<link rel="icon" type="image/x-icon" href="emb.jpeg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:wght@100;200;300;400;500;600;700&family=Kumar+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Gajraj+One&family=Geostar+Fill&family=Revalia&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<style>
/* Styling the signature image in the corner */
.corner-image {
position: fixed;
bottom: 10px;
right: 10px;
width: 100px; /* Adjust as needed */
height: auto;
opacity: 0.8; /* Slight transparency */
}
h1 {
z-index: 20;
font-size: 150px;
font-family: "UnifrakturCook", serif;
text-align: center;
margin-top: 20%;
}
s {
color:#bb0003;
text-decoration-color: #000;
}
body{
justify-content: center;
align-items: center;
display: flex;
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: auto;
background-color: #fff;
color: #000;
text-align: center;
border-radius: 5px;
padding: 10px;
position: absolute;
z-index: 1;
top: 100%;
/* Position the tooltip below the text */
left: 50%;
transform: translateX(-50%);
margin-top: 10px;
/* Add some space between the text and the tooltip */
opacity: 0;
/* Start with the tooltip hidden */
transition: opacity 0.5s ease-in-out;
/* Smooth transition effect */
}
.tooltip .tooltiptext::after {
content: 'Namaste Aunty';
font-family: 'Bebas Neue';
font-size: 75%;
color: #bb0003;
margin-bottom: 60%;
position: absolute;
bottom: 100%;
/* Arrow at the top of the tooltip */
left: 50%;
margin-left: -5px;
border-width: 5px;
border-color: transparent transparent #fff transparent;
/* Arrow color */
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
/* Make the tooltip visible */
}
.tooltip img {
width: 250px;
height: auto;
border-radius: 5px;
}
/* Media Query for Phones */
@media (max-width: 900px) {
h1 {
font-size: 70px;
margin-top: 40%;
}
.corner-image {
width: 60px;
}
.tooltip img {
width: 150px;
}
}
</style>
</head>
<body>
<!-- <img src = "twenty.png"> -->
<h1> You're <span class="tooltip"><b><s>old</s></b>
<span class="tooltiptext"><img src="twenty.png" alt="Prabal Minotra"></span>
</span> 20.</h1>
<!-- Signature Image in Bottom Right Corner -->
<a href="index.html"><img src="sign2.png" class="corner-image" alt="Signature"></a>
</body>
</html>