Skip to main content

Home/ CSS Evangelist/ Group items tagged html

Rss Feed Group items tagged

wen071

CSSElite CSS Gallery - css gallery, website design gallery, web design resources, css d... - 0 views

shared by wen071 on 19 Feb 07 - Cached
  • AJ Miles (0) Bluebolt (0) Pro Landscape (0) OhYouPrettyThings (0) SUM Agency (0) Igoo (0) Young Go Getter (0) Future of Web Apps (0)
yc c

HTML Purifier - Filter your HTML the standards-compliant way! - 1 views

  •  
    HTML Purifier is a standards-compliant HTML filter library written in PHP. HTML Purifier will not only remove all malicious code (better known as XSS) with a thoroughly audited, secure yet permissive whitelist, it will also make sure your documents are standards compliant, something only achievable with a comprehensive knowledge of W3C's specifications. Tired of using BBCode due to the current landscape of deficient or insecure HTML filters? Have a WYSIWYG editor but never been able to use it? Looking for high-quality, standards-compliant, open-source components for that application you're building? HTML Purifier is for you!
yc c

HTML5 presentation - HTML5 Slides - 10 views

  •  
    Take a walk through the woods and learn about all things HTML5. Starting with the JS APIS (selector API, storage, appcache, web workers, web sockets, notifications, drag and drop, and geolocation). Then delve into the new HTML semantic tags, link relations, micro data, ARIA, forms, audio and video, Canvas, and WebGL. Finally, the holy trinity finishes with CSS and selectors, fonts, text, columns, stroking, opacity, HSL, rounded corners, gradients, shadows, backgrounds, transitions, transforms, and animations.
Frederik Van Zande

How to Code HTML Email Newsletters [HTML & XHTML Tutorials] - 0 views

  •  
    HTML email newsletters have come a long way in the five years since this article was first published. HTML email is still a very successful communications medium for both publishers and readers. Publishers can track rates for email opens, forwards, and clickthroughs, and thereby can measure reader interest in products and topics; readers are presented with information that's laid out like a web page, in a way that's more visually appealing, and much easier to scan and navigate, than plain text email.
  •  
    Browser idiosyncracies, spam registers, and various mail clients are just some of the pitfalls that must be faced by email marketers. Make sure your HTML email gets through with Tim's essential how-to.
Adildi ldinlio

HTML XHTML and CSS For Dummies sixth Edition|free ebooks download - 0 views

  •  
    HTML XHTML and CSS For Dummies sixth Edition free download at the best library for free HTML/XML ebooks download.
Jason Bao

Layout Gala: a collection of 40 CSS layouts based on the same markup and ready for down... - 0 views

shared by Jason Bao on 14 Feb 07 - Cached
  • In November 2005 I presented on pro.html.it a three-part article on creating CSS layouts using techniques like negative margins, any order columns and in some case opposite floats. The main goal of the article was getting the maximum number of layouts based on the same markup, each with valid CSS and HTML, without hacks nor workaround and a good cross-browser compatibility. The result is a set of 40 layouts that we've thought worth sharing: on each of them you'll find also a download link (if you want, you can download the entire collection, 40 HTML pages in a single zip file). Further details can be found below the gallery.
Alberto Adrián Schiano

JS Bin - Collaborative JavaScript Debugging - 1 views

  •  
    specifically designed to help JavaScript and CSS folk test snippets of code, within some context, and debug the code collaboratively. JS Bin allows you to edit and test JavaScript and HTML (reloading the URL also maintains the state of your code - new tabs doesn't). Once you're happy you can save, and send the URL to a peer for review or help. They can then make further changes saving anew if required.
  •  
    Edit, test, visualice HTML5, CSS & JS on-line in a sandbox Editar,probar, visualizar HTML5, CSS & JS on-line en un arenero
Vernon Fowler

HTML5 Please - Use the new and shiny responsibly - 0 views

  •  
    Look up HTML5, CSS3, etc features, know if they are ready for use, and if so find out how you should use them - with polyfills, fallbacks or as they are.
yc c

HTML::TagCloud - Generate An HTML Tag Cloud - search.cpan.org (-) - 0 views

  •  
    This module provides a simple interface to generating a CSS-based HTML tag cloud. You simply pass in a set of tags, their URL and their count. This module outputs stylesheet-based HTML. You may use the included CSS or use your own.
my mashable

Adding HTML/Javascript to Wordpress Sidebar is Now Possible - 0 views

  •  
    Now using HTML-JavaScript Adder plugin you can add HTML and JavaScript to your wordpress sidebsr. The other important thing is you can do this without editing sidebar.php.This allows user to add embed ad codes from major advertisements sites including Google dsense, Adbrite,Bidvertiser and even you can add flash videos.
Alberto Adrián Schiano

Ten CSS One-Liners to Replace Native Apps ∙ An A List Apart Blog Post - 3 views

  •  
    Basic knowledge for html that fits in any gadget clearly Conocimiento basico para html que pueda verse claramente en cualquier dispositivo
mikhail-miguel

37 navigation techniques - 0 views

  • ...1 more annotation...
  • Hybrid CSS Dropdowns Photo Matt Intelligent Menus Inverted Sliding Doors Tab // 456bereastreet.com Accessible Image-Tab Rollovers // Simplebits Simplebits Mini-Tabs Simplified CSS Tabs // Simplebits Tabtastic
Jamil Silva

<!DOCTYPE html P - 3 views

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">   <!-- Thi...

theme tumblr isadora blanch cultura visual bigtheme

started by Jamil Silva on 01 Sep 12 no follow-up yet
oscommerce templates

Premium oscommerce Templates - my oScommercetemplates.net - 0 views

  •  
    For only 45$ you can get this Premium Oscommerce Store. Installed Modules: * Admin html product editor (Fckeditor) * Main Page admin html editor * Information Pages with admin control * Store Mode * Featured Products * Related Products * Monthly Sales Report * Quantity box with plus and minus buttons * Supertracker
yc c

HTML5 Watch - 7 views

  •  
    Collecting examples of creative, innovative, and unexpected use of emerging web technologies such as HTML5 and CSS3
mikhail-miguel

Can I use... Support tables for HTML5, CSS3, etc - 6 views

Vernon Fowler

Font sizing with rem - Snook.ca - 0 views

  • The problem with em-based font sizing is that the font size compounds. A list within a list isn't 14px, it's 20px. Go another level deeper and it's 27px!
  • The rem unit is relative to the root—or the html—element. That means that we can define a single font size on the html element and define all rem units to be a percentage of that. html { font-size: 62.5%; } body { font-size: 1.4rem; } /* =14px */ h1 { font-size: 2.4rem; } /* =24px */
  • We can specify the fall-back using px, if you don't mind users of older versions of Internet Explorer still being unable to resize the text (well, there's still page zoom in IE7 and IE8). To do so, we specify the font-size using px units first and then define it again using rem units. html { font-size: 62.5%; } body { font-size: 14px; font-size: 1.4rem; } /* =14px */ h1 { font-size: 24px; font-size: 2.4rem; } /* =24px */
  • ...3 more annotations...
  • I'm defining a base font-size of 62.5% to have the convenience of sizing rems in a way that is similar to using px.
  • consistent and predictable sizing in all browsers, and resizable text in the current versions of all major browsers
  • The compounding nature of em-based font-sizing can be frustrating so what else can we do?
Vernon Fowler

Web Designer Notebook » How to use Modernizr - 0 views

  • Modernizr doesn’t actually magically enable these properties for browsers that don’t support them. It just tells the page whether that feature is supported on the browser the visitor is using or not.
  • To install Modernizr, download the file from this page. Then, on your site’s head tag, add a link to the file. For example: ?1<script src="js/modernizr-1.0.min.js"></script> The second step is to include on your html tag a class of “no-js”: ?1<html class="no-js"> Why add this tag? Because that will be the default state of the page. If JavaScript (js) isn’t on, then Modernizr won’t work at all (and probably other features of your site won’t work either…), so it’s good that we have a fallback for that case. If JavaScript is indeed enabled, once that page is loaded on the browser, that class will be replaced dynamically and it may look something like this: ?1<html class="js canvas canvastext geolocation rgba hsla no-multiplebgs borderimage borderradius boxshadow opacity no-cssanimations csscolumns no-cssgradients no-cssreflections csstransforms no-csstransforms3d no-csstransitions  video audio cufon-active fontface cufon-ready">
  •  
    "There is a tool that came to make our lives as progressive web designers a bit easier: Modernizr. In this short tutorial, learn how to apply this handy script to maximum effect on your sites."
1 - 20 of 627 Next › Last »
Showing 20 items per page