-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathone.html
145 lines (121 loc) · 3.39 KB
/
one.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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
::-webkit-scrollbar {
width: 0px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
body {
background: #F2C25C;
/* #00F260 */
background: -webkit-linear-gradient(to right, #F2C25C, #5CD0F2);
background: linear-gradient(to right, #F2F25C, #5CACF2);
}
.grid-wrap {
display: grid;
justify-content: center;
align-items: center;
grid-template-columns: 1fr 2fr 1fr;
}
.hero img {
width: 330px;
padding-left: 15px;
}
.heading h1 {
text-transform: uppercase;
text-align: center;
font-weight: 500;
color:white;
}
.flex-box {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 23px;
}
.ajay {
border-radius: 50%;
width: 92px;
padding: 2px;
border: 1px solid #0F8BFE;
}
.ajay:hover{
-webkit-transform: scale(1.48);
-webkit-transition: all 0.12s ease-in-out 0s;
-moz-transition: all 0.12s ease-in-out 0s;
-ms-transition: all 0.12s ease-in-out 0s;
-o-transition: all 0.12s ease-in-out 0s;
transition: all 0.12s ease-in-out 0s;
}
.rolla1{
color: #1A046F;
}
.rolla2{
color: #FA0408;
}
.animate-charcter
{
background-image: linear-gradient(
-225deg,
#231557 0%,
#44107a 29%,
#ff1361 67%,
#fff800 100%
);
background-size: auto auto;
background-clip: border-box;
background-size: 200% auto;
color: #fff;
background-clip: text;
text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textclip 2s linear infinite;
display: inline-block;
font-size: 50px;
}
@keyframes textclip {
to {
background-position: 200% center;
}
}
</style>
</head>
<body style="background-color:rgb(229,226,255);">
<div class="grid-wrap">
<div class="hero">
<img src="./spare.jpg">
</div>
<div class="heading">
<h1 class="animate-charcter"><b>MOBILE SPARE PARTS DATABASE</b></h1>
</div>
<div class="container">
<div class="flex-box">
<div >
<img src="./ajay.jpg" class="ajay">
</div>
<br>
<p class="rolla2"><b>N.AJAY KUMAR VARMA</b></p>
<p class="rolla1"><b>208W1A12A1</b></p>
</div>
</div>
</div>
</body></html>