background preloader

Web

Facebook Twitter

Web Design Blog, Tutorials and Inspiration. 5 Practical Ways to Replace Images with CSS3. Every web designer and developer should be aware of CSS3 and all of it's fantastic new properties that make life easier for web professionals.

5 Practical Ways to Replace Images with CSS3

But we may not be truly making the most of the technology that is available to us. For example a lot of designers and developers still rely very heavily on images for web elements, when they code their websites. This may be because it seems quick and easy, or it’s perhaps just the way that we are all used to doing things, afterall using images was once the only way to get gradients, shadows, rounded corners and other simple effects on the web. But there are now very strong arguments to switch over to CSS3. For example reduced page load times, better scalability, and the flexibility to adjust dimensions and attributes without having to launch an image editor. 1.

Buttons are probably the most common of all web elements, and they usually consist of a rectanglular shape, with some label text on it. CSS3 Vendor Prefixes - CSS Snippets. -moz- /* Firefox and other browsers using Mozilla's browser engine */ -webkit- /* Safari, Chrome and browsers using the Webkit engine */ -o- /* Opera */ -ms- /* Internet Explorer (but not always) */ Explanation These browser prefixes are needed as the browsers experiment and test out their implementations of the newer CSS3 properties.

CSS3 Vendor Prefixes - CSS Snippets

Sometimes all the prefixes are not always needed, but it usually does not hurt to include them, as long as you make sure to put the non-prefixed version last. -moz-border-radius: 10px; -webkit-border-radius: 10px; -o-border-radius: 10px; border-radius: 10px; There are several reasons why this is important, but I’m not going to get into that here. Some properties are so far along in development, that some browsers are dropping the prefix. Internet Explorer Internet Explorer 9 supports many (but not all) of the favorite CSS3 properties. If you install it in your site, you can add this code after your other defintions:behavior: url(/PIE.htc); Authentication tutorial - Dropbox. Access Dropbox Using PHP. In this article we’ll explore the Dropbox PHP API by building a simple client for accessing files in a Dropbox account.

Access Dropbox Using PHP

The client will perform some basic operations, such as authentication, listing files, and uploading and downloading files. To keep the article short and readable, I’ll keep the included code to a minimum and instead refer you to the full code available on GitHub. To run the code, you’ll need PHP with cURL support and obviously a Dropbox account. Your starting point for anything related to development with Dropbox should be the Dropbox Developers Center where you can find the API reference along with its basic concepts and best practices.

You can also download the official SDKs, but PHP isn’t listed among the supported languages. Our client will be structured more like the official Python client, but I took some ideas and code from the PHP SDK above, especially for the OAuth part. Tell Dropbox About your App Newly created application are in “Development status”. <? Summary. Sitelinks - Verktøy for nettredaktører Hjelp. The links shown below some of Google's search results, called sitelinks, are meant to help users navigate your site.

Sitelinks - Verktøy for nettredaktører Hjelp

Our systems analyze the link structure of your site to find shortcuts that will save users time and allow them to quickly find the information they're looking for. 1: The main search result 2: Sitelinks We only show sitelinks for results when we think they'll be useful to the user. If the structure of your site doesn't allow our algorithms to find good sitelinks, or we don't think that the sitelinks for your site are relevant for the user's query, we won't show them. At the moment, sitelinks are automated. Getting Started.

Most webmasters are familiar with HTML tags on their pages.

Getting Started

Usually, HTML tags tell the browser how to display the information included in the tag. For example, <h1>Avatar</h1> tells the browser to display the text string "Avatar" in a heading 1 format. However, the HTML tag doesn't give any information about what that text string means—"Avatar" could refer to the hugely successful 3D movie, or it could refer to a type of profile picture—and this can make it more difficult for search engines to intelligently display relevant content to a user. Schema.org provides a collection of shared vocabularies webmasters can use to mark up their pages in ways that can be understood by the major search engines: Google, Microsoft, Yandex and Yahoo! 1. 1a. Your web pages have an underlying meaning that people understand when they read the web pages. 1b. itemscope and itemtype Let's start with a concrete example. To begin, identify the section of the page that is "about" the movie Avatar. Back to top 1d.