Skip to main content

Resume UI designer

What information should you include on the resume of a UI designer? This article should give you some ideas of the sort of experience that an employer is looking for on the resume of a UI designer.

Once you have read this article you may also want to take a look at our FREE resume tips section to find out how to put your resume together. If you would like a FREE copy of our email guide: Is your resume letting you down?: How to dramatically improve your resume (please click here now!)

What information to include for a Resume UI designer:

1. The name of each of your employers and your job titles should be included on your resume.

2. A brief description of what each employer does (if they are not well known).

3. The number of staff you manage (if applicable).

4.Planning, analysis, design, implementation and testing responsibilities as a UI designer.

5. Details of specific architecture, systems, etc.

6.The major projects that you have worked on and whether you completed the projects on time and on budget (if you had budgetary responsibility).

7. New techniques, procedures, practices and processes that you have introduced or developed.

8. How you have reduced costs / saved money for your department or the company will make your resume stand out.

9. How you have improved efficiency / productivity within your department or the company in general will make your resume stand out.

10. How you have increased / helped to increase revenues and profits in your department (if relevant) and for the company in general.

11. Any other achievements that have benefited your employers.

Source : http://www.alec.co.uk/resume-examples/resume-ui-designer.htm

Popular posts from this blog

Web Accessibility

  Web Accessibility: Making the Internet Inclusive for Everyone What Is Web Accessibility? Web accessibility means designing and developing websites so that people of all abilities and disabilities can use them effectively . An accessible website ensures that users with visual, auditory, motor, or cognitive impairments can perceive, understand, navigate, and interact with its content. Why Accessibility Matters Inclusive Experience: The web should be usable by everyone, regardless of physical or cognitive abilities. Legal Compliance: Many countries enforce accessibility laws (such as the ADA in the U.S. or the RPwD Act in India). Non-compliance can lead to legal action. Better User Experience: Accessible design benefits all users, including those on mobile devices, in noisy environments, or with slow internet connections. SEO Benefits: Search engines favor well-structured, semantic content, which overlaps with accessibility best practices. Core Principles ...

How CSS Sprites Work Under the Hood

When a browser loads a webpage, each image file triggers a separate HTTP request. If you have 20 icons, that’s 20 extra requests. A sprite consolidates all icons into one file , so the browser downloads just that single image once. Then, using background-position , you “shift” the visible window of that image to show the correct icon. Learn how to use CSS image sprites to enhance your website's performance Workflow in Detail Collect Icons Gather all icons you use repeatedly (social media, buttons, UI elements). Create a Sprite Sheet Use a tool like: Figma or Photoshop for manual placement. SpritePad or Glue (command line) to automate sprite sheet generation and output CSS coordinates. Calculate Positions Each icon’s top-left coordinates inside the sprite image determine its background-position . Example: if an icon starts 96 px from the left and 64 px from the top, use: .icon-example { background-position : - 96px - 64px ; } Serve Optimally Save t...

Mobile Web Design: Tips and Best Practices

Mobile Web Design Trends For 2009 Web designers know that the industry involves plenty of change, and continuous adaption and development of skills is required in order to stay up to date. In the past few years, one of the biggest areas of change has been the amount of Internet users who are accessing websites via phones and mobile devices. As a result, Web designers have a growing need to be educated in this area and ready to design websites that accommodate this audience. Because designing websites for mobile devices brings some unique situations and challenges into play, the subject requires a strategic approach from the designer and developer. In this article, we’ll look at the subject as a whole, including current trends, challenges, tips and a showcase of mobile websites. Plenty of helpful resources and articles are also linked to throughout the post, so if you’re interested in learning more about designing for mobiles, you should have plenty of information at your fingertips. 1....