-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (58 loc) · 1.6 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Changer - sinchana</title>
<style>
body {
font-family: 'Comic Sans MS', cursive, sans-serif;
background: linear-gradient(45deg, #f9f7d9, #fce4ec);
color: #333;
text-align: center;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.quote-container {
background-color: #ffe082;
border: 3px solid #ff6f00;
border-radius: 15px;
padding: 30px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
display: inline-block;
max-width: 600px;
}
.quote-text {
font-size: 1.5em;
line-height: 1.6;
}
.author {
margin-top: 20px;
font-size: 1.2em;
color: #d84315;
font-weight: bold;
}
.highlight {
color: #1976d2;
font-weight: bold;
}
.comic-bg {
width: 150px;
margin: 20px auto;
}
</style>
</head>
<body>
<div class="quote-container">
<p class="quote-text">
I'm only believe on <span class="highlight">Jassi Bhai</span> because Game Changer player he is,
only 1 guy <span class="highlight">Jasprit Bumrah</span>.
</p>
<p class="author">~ DSP</p>
</div>
</body>
</html>