Working Location
Kolkata
Address
1d, Middle Rd, Bagan Bari, Santoshpur, Kolkata, West Bengal 700075, India
Qualification
Graduate
Required Knowledge
WordPress & Magento website development
Knowledge of HTML5, CSS, PHP, Javascript
Up-to-date with the latest trends & best practices in SEM/ SEO
Adobe Photoshop
Analytical, creative logic and problem-solving skills
Excellent English comprehension skills to interpret direction & expectations
Job Responsibility
Develop, maintain and improve company websites on WordPress & Magento
Keeping up to date with the most recent developments in SEO/ SEM
Develop HTML emails for email marketing and maintain database
Create, research and implement SEO strategies & recommendations on-site and off-site
Compile regular performance reports using programs like Google Analytics/ Search Console
Conduct periodic site health audit
Regularly coordinating, collaborating and interacting with team members to ensure cross-learning and. continuous improvement.
Sensiple
Experience : Minimum 1 years of experience in the respective field.We are looking for Web Designers for the Kolkata division, India. The candidate should have an extensive knowledge of designing creative/professional website templates, logos ,banners and pamphlets.
Skills/Knowledge
Code HTML using Dreamweaver (optional)
Create flash animations, headers / banners
Good skills in Adobe Photoshop and other mockup/prototype tools (e.g. Flash).
Adobe Illustrator / Corel Draw
Strong interactive design background in the consumer space.
WEBART TECHNOLOGY
WordPress Developer Responsibilities:
• Designing and building the website front-end.
• Designing and managing the website back-end including database and server integration.
• Generating Word Press themes and plugins.
• Conducting website performance tests.
Required key skills:-
• Must have knowledge on custom word press, also page builder and elementor.
• Strong understanding of PHP back-end development.
• Good understanding of front-end technologies, including HTML5, CSS3, JavaScript, jQuery.
5 Days working. SATURDAY & SUNDAY Fixed OFF
CodeClouds
Available Locations
Kolkata, India
Category
Creative Design
Employment Type
Full-Time
Seniority
Senior
Job Description
We need a senior/intermediate level web designer to join our team in Kolkata. The ideal candidate would be well experienced in the relevant Adobe Creative Cloud programs, relevant scripting languages and would understand the latest UI design trends and standards.
Roles & Responsibilities
Ability to communicate professionally in English.
Must be aware of web standards and usability guidelines.
Can meet deadlines and produce high quality work while handling multiple projects.
Ability to adapt quickly to new technologies, techniques, and project requirements.
Requirements
A Bachelor’s or higher degree from any major will be considered, however, Computer Science, Graphic Design, or Web Development are preferable.
2 or more years of experience in Website Mockup designing and coding are required.
The ability to code with HTML, CSS3, Bootstrap, jQuery, Basic JavaScript is required.
Must have a clear vision in designing website mockups with Adobe XD, Photoshop, Figma, Illustrator.
Experience in any WordPress Theme builders such as Elementor, Divi or any other popular page builder is preferable to have.
Experience using CSS preprocessors like SCSS or LESS is preferred.
Invision or Sketch knowledge is preferred.
A good understanding of the latest UI design concepts and web standards.
Experience transforming marketing or informational content into functional websites and web apps.
What we offer you
Flexible Working
Competitive Compensation
Insurance Benefits
Training & Mentoring
Frequent Celebrations
Home Office Allowance
Paid Leave Benefits
Retirement Benefits
Partial Course Funding
Team Building Activities
Dev Infotech
Job Summary
Designation
Trainee Website Designer
Role
Web Designing
Experience
0 to 2 Years
Job Description
Website Designing
Qualification
1. Graduate – Any Specialization
2. HTML/HTML5, CSS/CSS3, Flash
3. Good Knowledge in Photoshop, Dreamweaver
4. Responsive Website and Microsite Knowledge
Requirement
1. Should be well versed in above Software’s & Technology
2. Strong Designing and Visualizaion Skills
3. Have th capability to handle the project individualy
Location
DumDum
Working Hours
10:00 AM – 6:30 PM (Day Shift :: Monday to Saturday)
Most important Web design interview question for fresher
Explain what is responsive web design?
Responsive web design (RWD) is the technique of design that ensures a website’s layout and content adapt and respond appropriately to the user’s device and screen size. The goal is to create a seamless and optimal viewing experience across a variety of devices, including desktops, laptops, tablets, and smartphones.
Fluid Grids,Flexible Images,Media Queries,Viewport Meta Tag are main key features of responsive website design.
What are the different types of CSS?
Inline CSS: This type of CSS is applied directly to individual HTML elements using the “style” attribute.
<p style=”color: blue; font-size: 16px;”>This is a paragraph with inline CSS.</p>
Internal or Embedded CSS:Internal CSS is defined within the <style> tag in the head section of an HTML document. It applies styles to elements on that specific page.
<head>
<style>
body {
background-color: #f0f0f0;
}
h1 {
color: green;
}
</style>
</head>
External CSS: External CSS is stored in a separate file with a .css extension and linked to HTML documents. This promotes reusability and consistency across multiple pages.
<head>
<link rel=”stylesheet” type=”text/css” href=”styles.css”>
</head>
CSS Frameworks: Frameworks like Bootstrap and Foundation provide pre-written, standardized code to facilitate the development of responsive and visually appealing websites.
CSS Preprocessors: Tools like Sass and Less allow developers to use programming constructs like variables, functions, and inheritance, which are then compiled into standard CSS.
CSS Grid and Flexbox: These are layout models in CSS for creating complex and responsive web layouts. Flexbox is designed for one-dimensional layouts, while Grid is for two-dimensional layouts.
What is web designing?
Web designing refers to the process of creating and designing the visual elements and user interface (UI) of a website. It involves a combination of graphic design, user experience (UX) design, and coding to produce a visually appealing and user-friendly website. Web designers aim to create websites that not only look aesthetically pleasing but also provide a positive and seamless user experience.
What do you do when a client just doesn’t like your designs?
Dealing with a situation where a client doesn’t like your designs can be challenging, but it’s essential to approach it professionally and collaboratively. Here are some steps you can take:
Stay Calm and Professional:
Seek Specific Feedback:
Listen Actively:
Ask for Examples:
Clarify Expectations:
Provide Alternatives:
You’re hired by a client to design a new website. What’s your first step?
The first step will be
Define Project Scope:Clearly define the scope of the project, including deliverables, timelines, and budget constraints.
Discuss any technical requirements or constraints that may impact the design.
then Research and Analysis:Conduct research on the client’s industry, target audience, and competitors to gain insights into design trends and user preferences.
Analyze the client’s existing branding, marketing materials, and any previous websites.
Explain how can you set an image as a background on web pages?
Ensure that your HTML document has a structure in place. For example:
<!DOCTYPE html> <html lang=“en”> <head> <meta charset=“UTF-8”> <meta name=“viewport” content=“width=device-width, initial-scale=1.0”> <link rel=“stylesheet” href=“styles.css”> <title>Your Web Page Title
</title> </head> <body> </body> </html>
Explain what is the difference between “visibility:hidden” and “display:none”?
They are both style properties
visibility:hidden: This property hides the element, but it still takes up space in the layout
display:none: It eliminates the element completely from the document. It does not take up any space, even though the HTML for it is still in the source code.
In CSS when you will use CSS float?
In CSS, you would use CSS float when you want to make an element of your page be pushed to the right or left and make other elements wrap around it.