-
Notifications
You must be signed in to change notification settings - Fork 0
/
skills.html
209 lines (180 loc) · 6.05 KB
/
skills.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0.2px 0px 10px 0px;
padding: 0%;
}
body {
background-color: rgb(43, 40, 40);
}
.navigation {
display: flex;
background-color: rgb(7, 7, 7);
clip-path: polygon(0% 0%, 100% 0, 100% 25%, 100% 100%, 0 60%);
}
.nav ul {
margin-top: 30px;
margin-left: 750px;
gap: 30px;
display: flex;
}
a {
display: flex;
font-size: x-large;
color: crimson;
}
a:hover {
font-size: xx-large;
font-style: italic;
color: cyan;
}
span {
color: red;
}
span:hover {
color: rgb(22, 171, 171);
}
.logo {
margin-left: 40px;
margin-bottom: 20px;
}
.logo:hover {
font-size: x-large;
font-style: italic;
color: red;
}
button {
/* margin-top: 50px; */
color: aliceblue;
width: 250px;
background-color: #6184a8;
/* border-radius: 40%; */
border-style: hidden;
font-size: xx-large;
}
button:hover {
background-color: skyblue;
color: red;
font-size: xx-large;
/* transform: rotatey(30deg); */
}
.skills {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.cards {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.card {
margin: 40px 40px 0px 40px;
position: relative;
max-width: 250px;
max-height: 350px;
box-shadow: 0 40px 60px -6px black;
}
.card-title {
display: block;
text-align: center;
color: #fff;
background-color: #6184a8;
padding: 2%;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
}
.card img {
width: 100%;
height: 98%;
object-fit: cover;
display: block;
position: relative;
}
.card-desc {
display: block;
font-size: 1.2rem;
position: absolute;
height: 0;
top: 0;
opacity: 0;
padding: 15px 8%;
background-color: white;
overflow-y: scroll;
transition: 0.8s ease;
}
.card:hover .card-desc {
opacity: 1;
height: 100%;
}
h1 {
font-size: 2.8rem;
color: #fff;
margin: 40px 0 20px 0;
text-align: center;
}
</style>
</head>
<body>
<div class="navigation">
<div class="logo">
<h1><span>AR</span>PAN <span>.</span></h1>
</div>
<div class="nav">
<ul>
<li><a href=""> skills </a></li>
<li><a href=""> Education </a></li>
<li><a href=""> Experience</a></li>
<li><a href=""> Projects </a></li>
<li><a href=""> Contact </a></li>
</ul>
</div>
</div>
<div class="skills">
<h1>My Knowledge</h1>
<div class="cards">
<div class="card">
<h2 class="card-title">Web-Development</h2>
<img src="./img/webdev.png" alt="">
<p class="card-desc">My Knowledge in Web-Development are in HTML , CSS, JavaScript, responsive design,
Bootstrap, PHP, MySQL, Git, front-end, back-end, hosting, domain</p>
<!-- <br> -->
<a href="webdev.html"><button>Learn More</button></a>
<!-- debugging, browser compatibility, frameworks, MVC, AJAX, JSON, SASS, npm, CLI.CMS, WordPress, SEO, UX/UI, mobile-friendly,REST API, -->
</div>
<div class="card">
<h2 class="card-title">Coding</h2>
<img src="./img/CODING.jpg" alt="">
<p class="card-desc">My Knowledge in Coding are in c , Python, Java, C++, JavaScript, HTML, CSS, SQL,
Git, data structures, algorithms,
object-oriented programming, recursion,
loops, conditional statements, error handling, variables, functions.</p>
<button>Learn More</button>
<!-- file handling, version control,functional programming, API, JSON, debugging, testing, web scraping,
machine learning, regular expressions, command line, IDE, -->
</div>
<div class="card">
<h2 class="card-title">Design</h2>
<img src="./img/design.jpg" alt="">
<p class="card-desc">My Knowledge in Design is mainly in UI/UX using Figma</p>
<button>Learn More</button>
</div>
<div class="card">
<h2 class="card-title">AI and ML</h2>
<img src="./img/AI.jpg" alt="">
<p class="card-desc">Artificial Intelligence and Machine Learning are technologies that enable computers
to learn and make decisions. They have applications in various fields like robotics, healthcare,
finance, and are revolutionizing industries worldwide.</p>
<button>Learn More</button>
</div>
</div>
</div>
</body>
</html>