-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
162 lines (156 loc) · 4.72 KB
/
Copy pathindex.html
File metadata and controls
162 lines (156 loc) · 4.72 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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<!-- Date: April 22, 2024 -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home Page :)</title>
<style>
body {
margin: 0;
padding: 3% 6vw;
/* background: rgb(238, 174, 202); */
background-image: linear-gradient(221deg, #ff00fa 8% 8%, #0ff 75% 75%);
text-align: center;
}
main {
margin-bottom: 1em;
display: flex;
justify-content: center;
align-items: center;
}
main section {
min-width: 300px;
margin-top: 3rem;
padding: 3rem 0.5rem 1.5rem 0.5rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* background: rgb(238, 174, 202); */
/* background: radial-gradient(
circle,
rgba(238, 174, 202, 1) 4%,
rgba(148, 187, 233, 1) 81%
); */
border: 2px solid rgb(232, 140, 200);
border-radius: 5px;
width: 50%;
box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset,
rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
rgba(0, 0, 0, 0.09) 0px 32px 16px;
background-image: radial-gradient(
farthest-corner circle at 100% 0%,
#00dfff 0%,
#8c00ea 100%
);
}
main section:hover {
scale: 1.01;
transition: all 0.3s ease-in-out;
}
ol {
text-align: left;
}
a {
display: block;
margin-block: 1rem;
letter-spacing: 0.5px;
color: white;
}
a:hover {
text-decoration: none;
color: rgb(20, 20, 60);
}
div a {
text-decoration: none;
color: rgb(7, 21, 20);
letter-spacing: -0.2px;
font-size: 14px;
}
.contect-us {
margin-bottom: 0;
/* padding: .7rem; */
padding-left: 0;
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.contect-us > ul > li > a {
text-decoration: none !important;
}
ul li {
list-style: none;
min-width: 6rem;
}
@media (max-width: 900px) {
ul li:nth-child(1) > a,
ul li:nth-child(2) > a {
margin-bottom: 0;
}
ul li:nth-child(3) > a,
ul li:nth-child(4) > a {
margin-block: 0;
}
}
</style>
</head>
<body>
<main>
<section class="ani">
<ol type="1">
<li><a href="./Mona-Editor/index.html">Mona Editor</a></li>
<li><a href="./Sofa-company/index.html">Sofa-company</a></li>
<li>
<a href="./LeadGen - Product - Showcase/index.html"
>LeadGen - Product - Showcase</a
>
</li>
<li><a href="./Aimee-App/aimee-app.html">Aimee-App</a></li>
<li><a href="./Studey-Sync/index.html">Studey-Sync</a></li>
<li><a href="./Usability-Hub/index.html">Utilituhub</a></li>
</ol>
<ul class="contect-us">
<li>
<a href="tel:+916203073994" style="text-decoration: none"
><span>📞</span> Call us</a
>
</li>
<li>
<a href="sms:+916203073994" style="text-decoration: none"
><span>📱</span> Leave an SMS</a
>
</li>
<li>
<a
href="https://wa.me/916203073994?text=Hello"
style="text-decoration: none"
><span>💬</span> Connect on Whatsapp</a
>
</li>
<li>
<a
href="mailto:deepakraj6203kumar@gmail.com?subject=Hello!"
style="text-decoration: none"
><span>📧</span> Drop an Email</a
>
</li>
<!-- <a href="#:~:text=permission">Link to highlight "permission"</a> -->
<!-- <a href="/sample.pdf" download> Download free sample</a> -->
<!-- <a href="https://wa.me/916203073994"><span>💬</span> Connect on Whatsapp</a> -->
</ul>
</section>
</main>
<div>
<a
href="https://deepak6203.github.io/frontend-projects/Mona-Editor/index.html"
>💞Creatored By Disc Jockey😀</a
>
</div>
</body>
</html>