Skip to main content

Home/ Web Development, Design & Programming/ Group items matching "thank" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
Laura Reed

Computer Science: Free Courses | Open Culture - 1 views

  •  
    "Get free Computer Science courses from the world's leading universities. You can download these audio & video courses straight to your computer or mp3 player. "
  •  
    Many thanks for posting this. I have bookmarked for a proper look later. Looking forward to downloading the dynamic html course.
imam hasan

Freelance Company | Web Design and Freelance Company | Freelance Training, Freelancing and Outsourcing | Jobs Training Graphic Design Training and Search Engine Optimization Training | Marketing Training, Business Training and Freelance Work Training | Al - 1 views

  •  
    is a web Design Company. Provide all types of marketing, designing and developing solutions. In a word prosolz is you're all in one stop IT vendor. Our teams have multiple experiences and use always latest technology to solve your any type of web presence. You can trust us! Thanks-
  •  
    If you think about affordable design and marketing service then prosolz one of the best freelance company who provide all type of web service within your time limit and budget. All of our members are talented and expert in communicating, designing and marketing field.
Luciano Ferrer

10 jQuery Horizonal Scroll Demos & Plugins | jQuery4u - 1 views

  •  
    "In today's post we bring to you 10 jQuery Horizonal Scroll Demos & Plugins useful for those who see things horizontally. I guess we have to accept some people scroll both ways!"
  •  
    Nice posting, thanks for sharing with us. Your blog is great and helped me feel better knowing about the Web Development.
Vernon Fowler

Web Standards - 2 views

  • development is simplified
  • ensure that all browsers will display your Web site properly
  • easier for search engines to access and index, easier to convert to other formats, and easier to access with program code (like JavaScript and the DOM)
  • ...1 more annotation...
  • easier for people with disabilities to use the Web
  •  
    I think everyone should read your blog who want to good information about Web Development services. Thanks and keep it up!
Vernon Fowler

Website Style Guide Resources - 4 views

  •  
    Interesting tools. Looking for these. Thanks!
  •  
    Web Designing Indore
awqi zar

The Ultimate Motion Graphics Tutorials Round-Up - Smashing Magazine - 3 views

  •  
    Although static graphics is obviously much easier to scan and therefore can be easily perceived, motion graphics brings dynamics and life into otherwise static content. Animation can help designers to convey a deeper meaning with the use of various video-techniques. It can also provide a better data visualization than the static graphics. How and where you use it in real-life situations is totally up to your talent and your abilities to express yourself.
  •  
    Thanks for such a nice tutorial it helped me find some goodies over there...
Saurabh Mehta

Quick Meme Generator on the App Store on iTunes - 0 views

  •  
    Hey we create new app and submit on iTunes App Store please see and suggest me your opinion thanks.
Jochen Burkhard

Web Design Tools - 0 views

  •  
    Wireframing with Keynote. Why not?
  •  
    Hhmm, tasty. Good article and thoughts, thank you.
Michał Leśniowski

52framework - The framework from the future, HTML5, CSS3, and more! - 13 views

  •  
    This is cool and awesome. Thanks for sharing.
imran subhani

Google's Buzz Released - 0 views

  •  
    So finally Google started tweeting (ooops buzzing) yesterday. I used it and love its features. To know more please view video and please leave a comment if you like it. No setup needed: Automatically follow the people you email and chat with the most in Gmail. Share publicly or priv
awqi zar

Choosing The Best CSS Framework: A Complete Guide | DevSnippets - 6 views

  •  
    There are plenty of reasons to use a CSS Framework to build your websites. They can speed up development, make your sites more aesthetically pleasing, and they can help eliminate all those nasty cross-browser compatibility issues (though not all of them do this, or do it well). But it can also be a steep learning curve to figure out which framework you should use (or if you should use one at all) and then how to use it.
  •  
    yea ur Right, I used to waste too much time to develop sites frm Scratch, Now I gotta follow sme standards Framework. These wuld be really helpful and I guess It's jst d right time to migrate to them... Thanks for the Article :) and Nice Share :)
Ted Goas

H&FJ: Four Ways to Mix Fonts - 10 views

  •  
    One of the best designer-geared typography articles I've seen in a long time. Thanks!
Soul Book

The Incredible Em & Elastic Layouts with CSS - 0 views

  • Elastic design uses em values for all elements. Ems are a relative size, written like this: 1em, 0.5em, 1.5em etc. Ems can be specified to three decimal places like so: 1.063em. “Relative” means: They are calculated based on the font size of the parent element. E.g. If a <div> has a computed font size of 16px then any element inside that layer —a child— inherits the same font size unless it is changed. If the child font size is changed to 0.75em then the computed size would be 0.75 × 16px = 12px. If the user increases (or decreases) text size in their browser, the whole interface stretches (or shrinks.)
  • All popular browsers have a default font size of 16px. Therefore, at the default browser setting, 1em = 16px.
  • The <body> inherits it unless styled otherwise using CSS. Therefore 1em = 16px, 0.5em = 8px, 10em = 160px and so on. We can now specify any element size we need to using ems!
  • ...9 more annotations...
  • However, (gasp) IE has a problem with ems. Resizing text from medium (default) to large in IE5/6 would lead to a huge increase in font size rather than the gradual one expected. So another selector is needed to get IE to behave: html{ font-size:100%; }
  • Let’s give our <body> some more style, and center everything in the viewport (this will be important later for our content wrapper.) Our initial CSS ends up like this: html{ font-size: 100%; } body{ font-size: 1em; font-family: georgia, serif; text-align: center; color: #444; background: #e6e6e6; padding: 0; margin: 0; }
  • 1 ÷ 16 × 740 = 46.25em (1 ÷ parent font-size × required pixel value = em value)
  • While we're here, we might as well add some typographic goodness by selecting a basic leading and adding some vertical rhythm, with everything expressed in ems.
  • Set a 12px font size with 18px line height and margin for paragraphs
  • Dividing the desired line height (18px) by the element font size (12px) gives us the em value for line height. In this example, the line height is 1 and a half times the font size: 1.5em. Add line height and margin properties to the CSS: p{ font-size: 0.750em; line-height: 1.5em; margin: 1.5em; } Now the browser will say to itself, “Oh, line height and margin is set to 1.5em, so that should be 1.5 times the font size. What’s the font size, again? 12px? OK, cool, make line height and margin 1.5 times that, so 18px.”
  • To retain our vertical rhythm we want to set an 18px line height and margin. Easy: If the font size is 18px then 18px in ems is 1em! Let’s add the properties to the CSS (and make the font weight light:) h1{ font-size: 1.125em; line-height: 1em; margin: 1em; font-weight: 300; }
  • Jon, good article and very useful chartm but your text sizing method has one major drawback. If elements with font-sizes set in em’s are nested, i.e with lists, these elements inherit the font size. Therefore each child element will be 0.75em (or 75%) of the previous one: See an example here. (Would have posted the code put it was coming out really ugly!) I would recommend against using that method and setting the global font size in the body tag i.e. 'font-size:75%' for 12px. Then only setting different font-sizes where necessary.
  • Thanks Will, interesting point, but that is solved with a simple font-size:1em on the first child. Retaining the default ensures that even images are sized correctly in ems. IE (surprise) will compute incorrectly against a parent length equivalent to 12px. My preference born out by some minor but painful computed size errors in complex layouts is not to adjust the body, and only set font size where necessary for specific elements.
  •  
    A nice and simple explanation of using EMs to make elastic layouts
Asha Infoetch

Internet Marketing Strategies and Techniques - 1 views

  •  
    Internet marketing involves use of all online methods of communication to cater to the customers. Online marketing is the most effective with certain niche markets. For instance, it is not as effective at reaching senior citizens who do not spend much time on the Internet as it is in reaching those who are beginning to explore the online world.
  •  
    Nice list of strategies! Thanks for sharing!
isoftvalley xu

expert blog about web design app develop seo ...ect - 0 views

  •  
    this blog offer expert suggestion,that's really helped me a lot about web design,iphone app develop,android app develop,sns marketing and so on. thanks a lot !
Redesign Unit

25+ Best Web Design Examples Using Parallax - 3 views

  •  
    We have selected 25+ best website design examples using parallax. These great websites not only have beautiful graphics and layouts, but also some really interesting design.
  • ...1 more comment...
  •  
    Nice.
  •  
    Thanks for sharing these nice tips.
Vernon Fowler

What is content strategy really about? - 8 views

  •  
    "This week on the Boagworld Show we chat with Kristina Halvorson about what it really means to offer content strategy."
  • ...2 more comments...
  •  
    Cool! Worth reading and listening.
  •  
    Thanks for sharing! Very informative.
  •  
    That's was awesome with each other communication. Not for me what that was really amazing !!!! I like it !
clonescloud

Now building a vacation rental booking platform is hassle free, thanks to Vacation Rental Script · Storify - 0 views

  •  
    Clone scripts help entrepreneurs and businesses save money and production time by simply using scripts that are replicas of the popular website/application in that niche.
Vernon Fowler

Myth #2: All pages should be accessible in 3 clicks - UX Myths - 4 views

  • the constant scent of information along the user’s path
  • it’s not the number of clicks but the well-labeled links with information scent that play a key role in usability
  • replace the three-click rule with the one-click rule: “Every click or interaction should take the user closer to their goal while eliminating as much of the non-destination as possible
  •  
    Thanks for your cause for thought, makes perfect sense
« First ‹ Previous 41 - 60 of 72 Next ›
Showing 20 items per page