Skip to main content

Home/ Web Development, Design & Programming/ Group items matching "born" 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
rahhulkumar

Different Functions Of Digital Marketing Agencies - 2 views

  •  
    Digital marketing is the same as online or internet marketing. The concept was borne because of the challenges involve in selling product or services online. Unlike offline marketing which involves physical techniques that requires little or no technical know-how, internet marketing requires specialized technical skills, because its medium of operation is after all digitalized.
Kymin Creation

Kymin Creation - Digital Marketing Agency In Ahmedabad - 0 views

  •  
    Founded in 2021 Kymin Creation was born out of a shared energy for advanced showcasing and a want to offer assistance businesses flourish online. What started as a little group of advanced devotees has developed into a full-fledged organization known for its inventive methodologies and quantifiable comes about. Over the a long time, we've had the benefit of serving a assorted extend of clients, accomplishing noteworthy breakthroughs, and continually adjusting to the energetic computerized landscape." Let's set out on this inventive travel together!
Adan Shaw

Premedia and Graphic Production Services By Digital Agency India - 0 views

  • Our History
  • 1997- 2001
  • The promoters of the company had a company selling multimedia solutions for 5 years and were distributors of Macromedia selling Flash and Authorware the 2 prime authoring toolkits for creating CDROMs and presentations. In one of the workshops we found that worldwide there was a latent demand for CDROM content and the idea of Reality was born. Reality was incorporated to provide Indian based CD content for national and international markets - probably among the first few in India. In the next 5 years we produced over 30+ titles which included titles on Temples of India, Taj Mahal, Goa, Yoga, Ayurveda, Rajasthan and Ragamala. We also did a initiative with Vigyan Ashram - Dr Kalbag renowned for his dedication to rural education for three CD's to teach assembling of computers to rural children in Hindi , Marathi and Gujarati.
  • ...3 more annotations...
  • With the advent of the iPad there has been a renewed focus on ebooks and Apps. We have refocused on this service of converting to books to eBook formats. This market is growing at a fast 300% growth. More ebook than paper book are being sold .We have converted close to about 3000 books to date to ePUB, Kindle and Fixed format books. We are also providing services for enhanced book with audio video and interactivity - reminds us of our CD ROM days where we used to do this on CD and now it is the internet
  • This year our industry has seen fascinating and inspiring developments in the digital transformation of the BOOK. eBooks have added so much life to books. With some good design sense and programming capabilities, publishers can now create new revenue opportunities for themselves by adopting a digital strategy.
  • Along with our core competencies in premedia and graphic production, we are also committing ourselves in 3 major domains Enhanced eBooks, ePublishing Apps and ePapers for news-agencies.
  •  
    As a best Digital Agency, we are committing ourselves in 3 major domains Enhanced eBooks, ePublishing Apps and ePapers for news-agencies. Also for Website design & development maintenance and marketing services Since 1997.
Jungle Jar

SitePoint Updates Their Online Reference And FireScope Is Born - 0 views

  •  
    SitePoint announces the all-new online web development reference, including their eagerly anticipated Javascript addition. Not only that, but they also released FireScope. Read this..
  •  
    Like this http://cheaptravelbooker.com Like this http://cheaptravelbooker.com like this http://killdo.de.gg travel,hotel,fun,hotel new,new offer,hotel best,best hotel,hotel travel,seo,backlinks,edu,gov,ads,indexing,bookmark,killgoggle,gogglesuck,goggle bookmark,kill goggle,yahoo,bing,indexing,quality links,linkwell,traffic boster,index best
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
‹ Previous 21 - 26 of 26
Showing 20 items per page