Why hire me
Hard skills
< HTML />
< CSS />
< Bootstrap />
< Tailwind />
< JavaScript />
< React />
< NodeJs />
< Figma />
< NodeJs />
< Git, GitHub />
< VSCode />
What I did?
Recent projects
HTML, CSS
Clone of Airbnb website
Airbnb, as in “Air Bed and Breakfast,” is a service that lets property owners rent out their spaces to travelers looking for a place to stay.
HTML, CSS
Clone of Airlab website
Airlab as in “Air Bed and Breakfast,” is a service that lets property owners rent out their spaces to travelers looking for a place to stay.
HTML, CSS, React, Redux
Clone of Gmail
Gmail is a free email service provided by Google. As of 2019, it had 1.5 billion active users worldwide. A user typically accesses Gmail in a web browser or the official mobile app.
HTML, CSS, JavaScript
Weather App
Type the place and find out the its current weather
HTML, CSS, JavaScript
Project management application
Project management application. Made with HTML, CSS, JavaScript
Where I gained knowledge?
Education and courses
I can speak
Languages
Uzbek
Native
English
Upper-intermediate
Arabic
A1 level
Turkish
Basic
My code style
Code Example
function solution (number){
let sum = 0;
for (let n = 1; n < number ; n++){
if (n % 3 == 0 || n % 5 == 0){
sum += n
}
}
return sum;
}