-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (84 loc) · 2.49 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cute pusss-eyes</title>
<script defer src="app.js"></script>
<style>
body {
background-color: rgb(152, 209, 203);
color: #fff;
padding: 0;
margin: 0;
font-family: sans-serif;
}
main {
display: grid;
place-items: center;
}
#eyes,
#eyes img {
position: absolute;
}
.para {
text-align: center;
font-size: 2rem;
margin-top: 20px;
}
.cute-link {
text-align: center;
font-size: 2rem;
margin-top: 20px;
text-decoration: none;
color: #fff;
}
.cute-link:hover {
color: #ff1493;
transition: 0.5s;
}
.footer{
display: flex;
justify-content: center;
align-items: center;
}
.footer p{
font-size: 1.2rem;
color: #000
}
.footer a{
text-decoration: none;
color: #000;
}
.footer a:hover{
color: #fff;
transition: 0.4s;
border: 1px solid #ff1493;
border-radius: 12px;
background-color: #ff1493;
padding: 0 5px;
}
</style>
</head>
<body>
<main>
<img id="anchorImg" src="kittens1.jpg" alt="cute-pussiessss">
<div id="eyes">
<img src="eye1.jpg" alt="eye" class="eye" style="top: -92px; left: 166px;">
<img src="eye1.jpg" alt="eye" class="eye" style="top: -92px; left: 98px;">
<img src="eye1.jpg" alt="eye" class="eye" style="top: -91px; left: -130px;">
<img src="eye1.jpg" alt="eye" class="eye" style=" top: -91px;left: -199px;">
</div>
</main>
<p class="para">These cute pussiess will always follow you</p>
<a class="cute-link" href="https://www.youtube.com/watch?v=uHKfrz65KSU" target="_blank">Click to get more cute
pussiess ♥</a>
<div class="footer">
<p >
For getting more pussies in your life follow here <span><a
href="https://www.github.com/Codefreak69" target="_blank">Codefreak69</a></span>
</p>
</div>
</body>
</html>