Skip to content

Instantly share code, notes, and snippets.

@pansev
pansev / html_meta_dublin_core
Created February 7, 2012 23:50
Sample HTML Meta Tags with Dublin Core
<head profile="http://dublincore.org/documents/dcq-html/">
<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/">
<link rel="schema.DCTERMS" href="http://purl.org/dc/terms/">
<meta name="DC.title" content="SELFHTML: Meta-Angaben">
<meta name="DC.creator" content="Stefan M&uuml;nz">
<meta name="DC.subject" content="Meta-Angaben">
<meta name="DC.description" content="Heute bekannte Meta-Angaben in HTML">
<meta name="DC.publisher" content="TeamOne">
<meta name="DC.contributor" content="Wolfgang Nefzger">
<meta name="DC.date" content="2001-12-15T08:49:37+02:00" scheme="DCTERMS.W3CDTF">
@pansev
pansev / gist:1763797
Created February 8, 2012 01:03
Microdata Software Application
<div itemscope itemtype='http://schema.org/SoftwareApplication'>
<h1 itemprop='name'>Wilmaa - Gratis Fernsehen im Internet</h1>
<meta content='Windows, Mac OSx' itemprop='operatingsystems'>
<div itemprop='reviews' itemscope itemtype='http://schema.org/Review'>
<span itemprop='reviewRating' itemscope itemtype='http://schema.org/Rating'>
<span itemprop='ratingValue'>4</span> / 5</span>
<span itemprop='author' itemscope itemtype='http://schema.org/Organization'>
<span itemprop='name'>Downloads.ch</span></span>
</div>
<span itemprop='description'>...</span>
@pansev
pansev / gist:1763983
Created February 8, 2012 01:13
Microdata Breadcrumb
<ul>
<li itemscope itemtype='http://data-vocabulary.org/Breadcrumb'>
<a href="http://www.downloads.ch/categories/software" itemprop="url">
<span itemprop="title">Software</span></a></li>
<li itemscope itemtype='http://data-vocabulary.org/Breadcrumb'>
<a href="http://www.downloads.ch/categories/multimedia-files" itemprop="url">
<span itemprop="title">Multimedia</span></a></li>
<li itemscope itemtype='http://data-vocabulary.org/Breadcrumb'>
<a href="http://www.downloads.ch/categories/webtv" itemprop="url">
<span itemprop="title">Web-TV</span></a></li>
@pansev
pansev / gist:1764564
Created February 8, 2012 02:19
Denteo Microdata
<div itemscope itemtype="http://schema.org/WebApplication">
<h1 itemprop="name">Die webbasierte Zahnarzt Software für die Praxis</h1>
<div itemprop="description">Denteo ist eine Webbasierende Zahnarztsoftware für die Praxis. ...</div>
<meta content='Windows, Mac OS x' itemprop='operatingsystems'>
<div itemprop='reviews' itemscope itemtype='http://schema.org/Review'>
<span itemprop='reviewRating' itemscope itemtype='http://schema.org/Rating'>
<span itemprop='ratingValue'>5</span> / 5</span>
<span itemprop='author' itemscope itemtype='http://schema.org/Organization'>
<span itemprop='name'>Panter llc</span></span>
</div>
@pansev
pansev / gist:1771202
Created February 8, 2012 17:13
OWL Sample
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns="http://localhost:8080/OWLBuergerInformation.owl#"
xml:base="http://localhost:8080/OWLBuergerInformation.owl">
<owl:Ontology rdf:about=""/>
<owl:Class rdf:ID="Gender"/>