Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged interest

Rss Feed Group items tagged

Whizark on Diigo

Style Guide Boilerplate - 0 views

  •  
    "Style Guide Boilerplate is geared for people interested in creating their own "tiny Bootstraps"."
Anna Taylor

Why Your Business Should Be Using Google Analytics - 0 views

  •  
    If you own a website, especially one that functions as a business, one of the most important things you may become interested and concerned with is your traffic. #Google #Analytics is virtually one of the top free tools that you can use to measure traffic to and around your website.
Rajneesh Kumar

Affordable Small Business Website Design Services in India - 1 views

It would be wrong to say that small businesses and shop owners only cater to neighbors & passersby. To attract customers interested in your offerings and multiply your monthly income, all you need ...

Small Business Website Design Services in India

started by Rajneesh Kumar on 05 Oct 13 no follow-up yet
Codal Inc

Big Beautiful Data - 0 views

Big data. It's a buzzword, it's a privacy issue, it's an industry, and it's totally incomprehensible. It is also something that many Internet users do not realize is everywhere. Any sort of fu...

started by Codal Inc on 24 Apr 15 no follow-up yet
simplykreative

Getting to know web designing - Technically - 0 views

  •  
    Content is the body of information that is available to visitors on a website. It is the subject and substance of the text and graphics. Content can include general information, data, news, stories, poetry, and entertainment, as well as music, photos, and videos; information that enhances knowledge and interest in the brand, institution, or social cause; downloadable or printable material; and interactive "goodies" such as contests, giveaway items, screen savers, and games.
Shahriar Kabir

Some Programming Languages . . . - 0 views

  •  
    Overview of some Programming Languages that might interest you to build a career in the field of information technology...
Vernon Fowler

Website Style Guide Resources - 4 views

  •  
    Interesting tools. Looking for these. Thanks!
  •  
    Web Designing Indore
Asahi Technologies

3 key things to keep in mind when building a social networking site - 1 views

Social networking websites have revolutionized the way people interact socially and share their common interest, concerns, thoughts, ideas and objectives. Custom social network sites, by virtue o...

Website development social network

started by Asahi Technologies on 30 Sep 15 no follow-up yet
Laura Reed

Adobe Photoshop CC for Beginners - Skillshare - 4 views

  •  
    "Enroll now to join the next session starting March 1st and collaborate with thousands of other students around the world."
  •  
    "Enroll now to join the next session starting March 1st and collaborate with thousands of other students around the world."
  •  
    Interesting!
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
7outsources india

Looking from Web Design Services for newziland firms - 0 views

We are Wellington; New Zealand based organization looking for qualified and experienced service provider (from across the world) for our requirement of Website Redevelopment. [A] Notice Type: RFP (...

webdesign

started by 7outsources india on 07 May 10 no follow-up yet
Herb Tucker

PHP: Expressions - Manual - 0 views

  • (scalar values are values that you can't 'break' into smaller pieces, unlike arrays, for instance
  • Expressions are the most important building stones of PHP. In PHP, almost anything you write is an expression
  • The simplest yet most accurate way to define an expression is "anything that has a value"
  • ...16 more annotations...
  • PHP also supports two composite (non-scalar) types: arrays and objects. Each of these value types can be assigned into variables or returned from functions.
  • PHP is an expression-oriented language
  • Since assignments are parsed in a right to left order, you can also write '$b = $a = 5'
  • and that's the value of the assignment itself
  • A very common type of expressions are comparison expressions. These expressions evaluate to either FALSE or TRUE. PHP supports > (bigger than), >= (bigger than or equal to), == (equal), != (not equal), < (smaller than) and <= (smaller than or equal to). The language also supports a set of strict equivalence operators: === (equal to and same type) and !== (not equal to or not same type). These expressions are most commonly used inside conditional execution, such as if statements.
  • and is assigned back into $a,
  • The last example of expressions we'll deal with here is combined operator-assignment expressions
  • Adding 3 to the current value of $a can be written '$a += 3'
  • This means exactly "take the value of $a, add 3 to it, and assign it back into $a"
  • Any two-place operator can be used in this operator-assignment mode, for example '$a -= 5' (subtract 5 from the value of $a), '$b *= 7' (multiply the value of $b by 7), etc.
  • There is one more expression that may seem odd if you haven't seen it in other languages, the ternary conditional operator:
  • If the value of the first subexpression is TRUE (non-zero), then the second subexpression is evaluated, and that is the result of the conditional expression. Otherwise, the third subexpression is evaluated, and that is the value
  • Some expressions can be considered as statements. In this case, a statement has the form of 'expr ;' that is, an expression followed by a semicolon. In '$b = $a = 5;', '$a = 5' is a valid expression, but it's not a statement by itself. '$b = $a = 5;' however is a valid statement.
  • One last thing worth mentioning is the truth value of expressions. In many events, mainly in conditional execution and loops, you're not interested in the specific value of the expression, but only care about whether it means TRUE or FALSE. The constants TRUE and FALSE (case-insensitive) are the two possible boolean values.
  • Throughout the rest of this manual we'll write expr to indicate any valid PHP expression.
  • Functions are expressions with the value of their return value.
  •  
    Expressions defined and discussed with highlighting
tembelyarasa

http://tembelyarasa.com/2011/02/08/ilginc-arabalar/ - 0 views

shared by tembelyarasa on 10 Feb 11 - No Cached
  •  
    This cars great
Cor S.

20 Color Scheme Generators for Web and Graphic Designers - 0 views

  •  
    "Colors can make or break your design by either making your audience want to stick around or look away. Well-chosen color combinations help designs catch attention more while the less planned ones do the opposite. ... Good news is, there exists many color scheme generators that will help even the most uninspired to choose what colors to use. We have listed 20 online tools in this post to help you out. Check them individually and see which software will help you in specific design-related tasks."
Laura Reed

Call for Moderators! - 0 views

I am looking for 2-3 moderators for Diigo's group "Web Development, Design & Programming" If you've made quality contributions to the group and you are interested, send me a message.

started by Laura Reed on 05 Jul 11 no follow-up yet
Tonny Mathews

Obtain Your Own Web Portal and Earn More Profits - 1 views

  •  
    Do you ever feel or observe that your company website is not earning you sufficient profit? Have you ever marked the excellence of the marketing pitch of your marketing persons swing? Are you looking for expressive web portal which add more worth to your business so that it interests more potential clients?
« First ‹ Previous 141 - 160 of 210 Next › Last »
Showing 20 items per page