Each of our design is a professional design made with custom accordingly your requirements just for you! We design Awesome!
Committed business growing here. Just clear, simple, affordable prices with Kick-Ass results
We work extremely hard to make sure we create all the website design in a Flash!. With targeted delivery within 21 days on most orders.
You always look Flaming Hot with our desktop, table and mobile friendly designs. Which fit all available devices.
We create a platform where you can manage all the actions like, Save, Edit, upload and you're done to manage your cms!
Responsive seo friendly website increase 50% conversation rate on the google or any other browser!
A good clean website build your trust with customer and do more business and help to reach more professional.!
Are you curious about web design? I can help you learn web development. Also, I can train someone on your team on how to update or edit your existing website.
Below are the things I'm with you to make your company/business grow.
Your friendly foreigner Web Designer & Developer and some more
Below are some of the most frequent asked questions.
Have your own queries ? Email:
shahrukhkhan.developer@gmail.com
First of all, we will get to know you and your company. Not only your company colours and logo etc, but what it is your ideas, you would like to acheive and what your personal solutions might be to make it better. After that our designers do their magic and design a totally bespoke website just for you or your team. We then send it over to you for approval and "hey-presto" we're in business.
Most of the time we'll have your website design ready for approval in a Flash but occasionally our workload does increase so instead we aim to have your design ready for approval within 30 days. For updates on orders already paid for, email: shahrukhkhan.developer@gmail.com
training-modules
and we'll guide how you can work with your
website and you can build new one for more information shahrukhkhan.developer@gmail.com
shahrukhkhan.developer@gmail.com
Our customers unconditionally love! Read what they have to say below. Hashim, Islam, Charles, shahid, Simon, Cassandra, Harpreet, Iquo.
Website development. Very responsive and a delight to work with. Excellent work delivered for a reasonable price.
Sharukh is a highly dedicated professional who follows up closely on his work, and focuses on delivering results.
I engaged Shahrukh to develop a new business website and have been not only delighted with his work but also highly impressed by his skill, knowledge, work ethic and professionalism. At all times he was supportive, he offered excellent advice and importantly did what he said he would do - on time delivery to a very high standard. He is an extremely talented and conscientious developer and I'm continuing to employ his services for my business web and SEO growth. If you are thinking of outsourcing your web development and SEO requirements, I highly recommend you look no further and connect with Shahrukh
Shahrukh has a tremendous knowledge of web design & development technologies like wordpress, WooCoomcerce, shopify and squarespace. He has a strong desire to provide quality service . It is a great pleasure to work with!
Shahrukh Khan will deliver anytime you ask for his service. He is a great web designer and web developer with with the right skills and expertise.
Knowledgable technical expert. You must try
I was tired of my old website and felt it needed a makeover; therefore, I reached
out to a few designers on LinkedIN for assistance but didn’t make a decision instantly.
Shahrukh consistently kept in contact with me and kept providing solutions to my many
questions. Eventually, I decided to redesign it myself; however, Shahrukh is the consultant I used to
assist me in doing it by myself.
He invested many hours reviewing it as I made changes and rewriting specific CSS coding I wanted to
implement to make it look more appealing to the eye.
He was very attentive, extremely patient and professional with me through the entire process
regardless of how many changes I made. I would advise you to hire him to design your entire site or to
act as your consultant if you choose to try it yourself.
He is diligent and a great problem solver. I have used him on several projects and I've found him to be a highly skilled Developer. You won't have to wonder if he is on a track he will check regularly with updates of statues. He's a great find.
Knowledge is power! Sharing is caring!
Looking to supercharge your coding skills.
We've faced many time and sharing you to help you to do that.
First you need to create a file or directory in the plugins directory
Let show you a test plugin
Create a file name test-plugin.php in the plugins directory
Enter the below content in the file
<?php
/*
Plugin Name: Test Plugin
Description: This is just a test plugin to print "Hello world! Plugin is running!
Plugin URI: https://www.shahrukhdeveloper.com
Version: 1..1 or something
License: GPLv2 or later
*/
Read More
Media queries help to create a responsive website or landing page. These are the breakpoint and we set them accordingly to the devices such mobile,, tablet, desktop etc. by using width and height to break the layout and the code.
Media Types
All – Use for all devices聽Print – use only for print device聽Screen – use only screens聽Speech – Use for speech devices
Types of breakpoints for screens :聽Mobile Device – Small Devices, Tablet Devices
Read MoreThe filter css property is used to apply a graphical effects to an element like bluring or color shifting. Filters are commonly used to adjust the rendering of images colors, background, borders etc.
There are many available properties in css to achieve filter effects.
聽Filter: none聽Filter: blur()聽filter: brightness()聽filter: contrast()聽filter: drop-shadow()聽filter: grayscale()聽filter: hue-rotate()聽filter: invert()聽filter: opacity()聽filter: saturate()聽filter: sepia()聽filter: url();
Read MoreOnce my colleague told me or I also faced this problem with svg icons is that svg icons don’t match the color of text. In fact this was a huge problem, I was stuck that time but there is a pretty solution for this I didn’t think that time. To color a svg we use fill:colorname!
svg {
fill: colorName;
}
svg {
fill: #454454;
}
svg {
border: 5px solid #636363;
}
Read More
Custom property defined in css that contain a specific values to be reused throughtout the document. In a large website there is a large amount of css code with a lot of repeated values. The same color can be used 2 or more places or even hundreds of different places. So Custom properties allow us to stored value in one place and reuse on other places.
element {
--main-bg-color: colorname;
}
:root {
--main-bg-color: colorname;
}
Read More