Created
November 4, 2021 17:39
-
-
Save jeremyboggs/6c498efe79e9a4333abea889daa23d16 to your computer and use it in GitHub Desktop.
Example HTML with Dublin Core metadata and COinS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<title>Web Page Metadata Example</title> | |
<!-- Dublin Core --> | |
<!-- Visit https://www.dublincore.org/specifications/dublin-core/dcmi-terms/ for a list of specific elements --> | |
<!-- Add a reference to the schema. --> | |
<link rel="schema.DC" href="https://purl.org/dc/clients/1.1/" /> | |
<!-- Define elements and their values --> | |
<meta name="DC.title" content="Web Page Metadata Example"> | |
<meta name="DC.description" content="Example HTML with Dublin Core metadata and COinS" /> | |
<meta name="DC.creator" content="Jeremy Boggs"> | |
<meta name="DC.date" content="2021-11-04"> | |
<!-- COinS element --> | |
<span |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment