Monday, 30 April 2012

PPD... Moo Cards

I've already printed my business cards in digital print, but I sent off for my free sample from moo.com. I was impressed by the quality of these card, printed on to 'green' stock, to mean they are more environmentally friendly, and also so details can be written on the back of them. They are a slightly thicker stock than the cards I printed, and the colours are exactly perfect. At the moment, printing my business cards with moo seems a bit pricy, but for the exhibition show next year it is definitely worth the investment. Here are some photos of my cards (with moo watermark).




I also sent off for a sample pack of the ordinary moo products and of their luxe business cards, as next year this may be what I print. The luxe business cards with the opportunity for triplexing would look great next year. On this design, a blue card in between the front and back would be perfect. They would obviously be quite expensive to print, but they would be memorable, so I could just get some to send to people I had been talking to.



Moo print more than just business cards, there are postcards, stickers, labels, mini cards and more. It would be good next year to print on to a variety of stocks and find a creative way of giving out/displaying my cards rather than just laying them out.





Next year, my idea is to create a series of backs with my images on, with a simple front so that theres space for details to be written, but different examples of my work can be seen on the backs. I could print my cards onto the rounded corner business cards to make them stand out a bit more. I could print some post cards and writing cards for any correspondence I have with other professionals.

OUGD203... Ongoing Evaluation... Part 2

Week Eleven [Monday 23/04/12]

This week I have decided on a brief, and started on my initial primary and secondary research. Im working a lot quicker than I did in the previous brief, as I think I do actually work quicker on my own, however, I also work better when I'm bouncing ideas off others and have others to give me feedback, so I need to keep asking people to look at my work and see if my concept makes sense throughout this brief. I've realised how short it is, and how much I want to do in such a short space of time, so its really important to stay organised, so I've booked ahead my print slots and tried to be realistic in the products I want to create. Working more realistically to deadlines is something I've been considering since the image module, and I want this to be reflected in part two of OUGD203. I want to make good progress, so after my concept crit next week, I want to get started on some design ideas.

Week Twelve [Monday 30/04/12]

My idea seemed to go down well in the concept crit, and the feedback I received helped me to make some decisions I was a bit unsure about, and really direct my brief in a certain direction. I've decided that my packaging will be type focused, to ensure that it attracts the right target audience. This will be a good challenge, as I usually work image based, so I really need to try using type only to communicate. I've got a lot of organising and planning to do, before showing my progress to the same group of people in next weeks crit. Hopefully they can give me some more useful advice and let me know if my initial designs are working in the way that I want them too. Next week, we lose a day with the bank holiday, and also we have many PPD tasks to get through, so I hope I still manage to keep up this good level of work I have been doing so far.

Week Thirteen [Monday 07/05/12]

After the crit I got lots of feedback to do with my font, so it made sense to create this font as soon as possible so I could get more feedback. I'm really happy with this and it works better than any attempt at making a font I've had before. I've done a lot  of preparing and am getting a long well, however, I don't know if research has influenced me a lot as I haven't really done a lot so I need to do some to save me from getting stuck. I need to work really hard next week so that I can get everything ready for my print slots.

Week Fourteen [Monday 14/05/12]

I'm realising how close it is now to the hand in date, so have made a day to day plan of what needs to get done to stop me from getting behind. If I stick to it I think I will produce a good range of deliverables. I am starting to worry that my designs are a bit simple, so I do really need to do more research as I feel like something is missing from my designs. I need everything to be finished by next tuesday night, as my print slot is on the wednesday morning. I will then have the rest of wednesday, thursday and friday morning to take my photoshoot, prepare my boards, and make sure all my blogging is up to date and my evaluation is done. There is a lot of work to get through but hopefully I will get it all done!

Week Fifteen [Monday 21/05/12]

I've done so much work this week and am really pleased with my printed final products. As always, I panicked at the end, and didn't have time to do everything I said I wanted to do to the extent I wanted to. I have written more about this in my module evaluation.

Module Deadline... Friday 25/05/12

Wednesday, 25 April 2012

PPD ~ Dreamweaver Workshop II


Before designing a website we need to identify:
- target audience
- what does the audience need to see
- the overall purpose of the website

Limitations:
- web safe colours
- web safe fonts
- screen sizes

Dreamweaver - what you see is what you get
HTML - hyper text mark up language

Main tags

<html>
everything under this is html

<head>
anything that isn't part of the design of the website, but may be searchable by google
<title>
the title of the page
</title>
</head>


<body>
what is visible in design of the page
</body>
</html>
To view coding for a website right click and view source.

Other tags

We looked at the source for a number of websites we had already looked at, and looked for tags that kept popping up on the different websites so we could see what these mean.

There are other languages, such as javascript and css (cascading style sheets). And PHP's, which are spreadsheets such as how amazon shows all of its products without creating a page for each individual product. 

- meta (how search engines pick up your website through key words)
- different sizes for ipad
- script
- div (linked to css - division of a website)
- a href (links)
- img (images)
- h (headers)
- p (paragraph)
- li id
- span
- google analytics
- td (table data) tr (table rows)

Making a website

- Create a new root folder to put everything in, needs to have no spaces and all letters lowercase
- Create a subfolder inside the root folder which has to be called images
- Open dreamweaver, choice of languages to open, new html 

- Different views, can see code and design at the same time 
- Need to tell dreamweaver to use our root folder. Site - new site - and locate dreamweaver to your file


- In the bottom right hand corner of the screen the files tab appears


- File - save as - (saves web page in root folder) homepage always saved as index.html (now appears in files tab)
- Click this button on dreamweaver to see what it looks like as a webpage.
- Content for webpage needs to be in between body open and body close

CSS

- Dreamweaver - file - new - blank page - css - file - save as - stylesheet.css
- Make generic overall settings, apply to the body tag, just type in body {


- Gives list of all the css attributes you can apply to the body, put the attributes on a new line
- Specify font, just type font and choose from font family


- Need to close the attribute with a semi-colon, go on to the next line and specify the font size (font sizes are in pixels on the web instead of pt sizes)
- To change the colour just write color the american way, and it brings up a palette of the web safe colours


- Need to close the tab with another semi colon and a bracket on the next line }
- Then save the CSS sheet
- Back in the html document, the CSS sheet goes in the head tags, we don't need to type it in, but go the the CSS styles tab and click the attach style sheet button, now appears as html


- To create a div id , new line, enter a # (Alt + 3) wrapper
- Create width and a height for the box we are creating, and a background colour


- Go back to html document, put tag for div in body section


- Close div
- Back to css, new navigation section, decide on position (going for relative), float: left (because navigation is on left), width, height, background colour


- Go back to html, and put the navigation bar inside the wrapper, close div. Align codes at same spacing for each code, to make it obvious what is for what



- Always try and make your website as small as possible in file size

Adding logo

- Open photoshop, using web settings, to create a logo that is a smaller file size as possible


- Needs to be saved in a specific way, best quality Jpg or Png24 (for transparent)


- Save it to the images folder in your root file, go back to dreamweaver, create a div id specifically for the logo

- The logo goes in the navigation section in the html sheet


Buttons

- Create new tag, need to add padding and margin so its not just right at the side of the page, margin is from the side and padding from the top/ bottom. If you wanted the box's width 150px, but with 10px margin, the width would only be written as 110px as you need to take off the margin and the padding.

E.g.












Tuesday, 24 April 2012

PPD ~ Dreamweaver Task ~ Scamps





I found this article in Computer Arts magazine with some advice on creating scamps or wireframes.


Web Safe fonts


Web safe colours

Photoshop shows which colours are web safe e.g.


The web fonts

Arial / Helvetica

The web safe colours for my logo

 #99ccff

 #6699cc

 #99cccc

 #cc99cc

Scamps for the plan of my own website

Designed to fit 800x600 pixels as this is the standard size




Feedback on my scamps

-

Content map


- On the home page will be examples of my new work, but more images can be found in the portfolio section
- The social media will be updated regularly and this will be how I share any news with the viewers
- The about page will contain all the information about me, with added pages for convenience of those trying to find out what services I offer or see testimonials

-

Presentation Plan

This is the content that needs to be in the presentations which will be on the 6/7th June. The presentations are 8 mins with 2 mins of questions and need to be pdfs or ppt.

- About my entire learning journey with focus on 2nd year
- Where I am in regards to professional practice
- Transition from personal to professional practice
- Where I am as a designer, and where I want to be positioned in industry
- The areas of focus I want to concentrate on in level 6
- What I am doing over summer (visits, freelance, placements)
- What I am researching for dissertation

When we come back in September we will do a presentation about what we have done over summer to do with the content of the presentation.

What will go on each slide?


1. slide with logo

2. my initial targets for this year

3. how much I've improved since last year

4. what i want to achieve next year / what i will focus on

5. favourite module

6. worst module

7. plans over summer

8. dissertation idea

9. aspirations / where i want to be positioned

10. professional practice

How will the slides be designed?

- Must match in with all other branding
- Contain examples of my work and work that I aspire to create