Seven Wonders of The World

http://www.e-rinascita.com/7wondersofworld/index.html

 

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Applying for Master Program in Sweden

1)     Visit www.studera.nu and browse its English version website.2)     On the left menu you have to browse YOUR PAGES link in order to get registered on the website https://www.studera.nu/aw/toAccount.do?lang=en3)     Make sure you read each and every instruction written on the website specially at or under https://www.studera.nu/studera/897.html4)     After creating your account and understanding the general and documentation requirements browse search for courses https://www.studera.nu/aw/courseGuide.do?lang=en5)     It’s better if you search your relevant course using free text search utility provided at the top right on the page.  6)     You can apply for at most 8 courses. 7)     For general requirements at KTH you can refer this URL http://www.kth.se/studies/master/admission?l=en8)     Following documents must be submitted to www.studera.nu before the deadline mentioned on the website. These documents are general. You must check the actual requirements of your selected courses.a.      Cover sheet (generated from the web-based application)b.      Certificates and diplomas from previous education at an internationally recognized university (must be attested from HEC).c.      Transcripts of records (including course list). Sort them in reversed chronological order; i.e put the last received document on top.d.      A copy of your passport or some other document of identification.e.      Proof of English skills.f.        Autobiographical statement (Letter of motivation)g.      Curriculum Vitaeh.      2 Letters of Recommendationi.        Certificate showing relevant work experience, if applicablej.         Thesis proposal (if required)k.      Proof of finance (if required) 9)     You are done in selecting the courses and your application should be submitted successfully.10) After successful application submission you have to send your documents to Sweden for your application evaluation before the deadline on the mentioned address. Don’t forget to enclose singed cover sheet.11) After receiving your documents you will receive an acknowledgement email from studera.nu12) Keep on checking your studera.nu account regularly specially near the date of announcement. Visit http://www.paksirzameen.net/ for detailed discussion and procedures.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Cross-browser compatibility

Cross-browser compatibility is one of the most time consuming tasks for any web designer. We’ve seen many different articles over the net describing common problems and fixes. I’ve collated all the information I could find to create some coding conventions for ensuring that your site will work first time in every browser. There are some things you should consider for Safari and Firefox also, and IE isn’t always the culprit for your CSS woes.

Here is a quick summary :

  1. Always use strict doctype and standards-compliant HTML/CSS
  2. Always use a reset at the start of your css
  3. Use -moz-opacity:0.99 on text elements to clean up rendering in Firefox, and text-shadow: #000 0 0 0 in Safari
  4. Never resize images in the CSS or HTML
  5. Check font rendering in every browser. Don't use Lucida
  6. Size text as a % in the body, and as em's throughout
  7. All layout divs that are floated should include display:inline and overflow:hidden
  8. Containers should have overflow:auto and trigger hasLayout via a width or height
  9. Don't use any fancy CSS3 selectors
  10. Don't use transparent PNG's unless you have loaded the alpha

 further reading

http://anthonyshort.com.au/blog/comments/how-to-get-cross-browser-compatibility-everytime/

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5