-
Notifications
You must be signed in to change notification settings - Fork 0
/
dadjoke.html
73 lines (57 loc) · 5.11 KB
/
dadjoke.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html><!-- Has to be present for compatibility reasons. -->
<html lang="en" class="no-js">
<!-- The lang attribute applied to the html element, defines the natural language of the page. It contains a single “language tag” in the format defined in Tags for Identifying Languages (BCP47), for example en for English, de for German or ru for Russian. Apply styling to specific components in browsers that don’t support JavaScript. This class will be removed in browsers that support and execute modern JavaScript. -->
<head>
<meta charset="UTF-8">
<!-- This attribute declares the document’s character encoding. Leaving it off might cause specific characters to display incorrectly in some browsers. It must come before the <title> element to avoid faulty characters in the page title.-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css">
<!-- <link rel="stylesheet" href="/assets/css/print.css" media="print"> -->
<!-- <Print CSS for the site.> -->
<!-- <link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Title">-->
<!--<RSS Feed for your site.> -->
<script type="module">
document.documentElement.classList.remove('no-js');
document.documentElement.classList.add('js');
</script>
<!-- <meta name="description" content="Page description"> -->
<!-- <The unique description of the page, for example, displayed on search result pages. It can be any length, but search engines truncate snippets to ~155–160 characters.> -->
<!-- <meta property="og:title" content="Unique page title - My Site"> -->
<!-- <The unique title of the page. Used by URL scrapers on social media platforms like Twitter or Facebook.> -->
<!-- <meta property="og:description" content="Page description"> -->
<!-- <The unique description of the page. Used by URL scrapers on social media platforms like Twitter or Facebook.> -->
<!-- <meta property="og:image" content="https://commons.wikimedia.org/wiki/File:Felis_catus-cat_on_snow.jpg"> -->
<!-- <The image displayed when you share the link to a page on social media, chat applications, or other sites that scrape URLs.> -->
<!-- <Ideally, it should be a square image with the important content placed in the middle of the square in a rectangle with a 2:1 ratio. This will make sure that the image will look good in cards with rectangle and square shaped images.> -->
<!-- <Rules for Twitter: Images for this Card support an aspect ratio of 2:1 with minimum dimensions of 300x157 or maximum of 4096x4096 pixels. Images must be less than 5MB in size. JPG, PNG, WEBP and GIF formats are supported.> -->
<!-- <meta property="og:type" content="website"> -->
<!-- <The type of content you’re sharing, e.g. website, article, or video.movie. A required property for valid Open Graph pages.> -->
<!-- <meta property="og:image:alt" content="Image description"> -->
<!-- <A description of the image. Don’t use this meta tag if the image is purely decorative and doesn’t provide any meaningful information. Screen readers ignore the image, if we don’t provide alt text.> -->
<!-- <meta name="twitter:card" content="summary"> -->
<!-- <his meta tag defines how cards will look when shared on Twitter. There are two options for websites, summary and summary_large_image.> -->
<!-- <meta name="twitter:dnt" content="on"> -->
<!-- Disallow Twitter from using your site’s info for personalization purposes.-->
<!-- <meta property="og:url" content="https://malcolmdsmith.com"> -->
<!-- <The canonical URL of the page. A required property for valid Open Graph pages.> -->
<!-- <link rel="canonical" href="https://malcolmdsmith.com"> -->
<!-- <Use the canonical link element to prevent SEO issues caused by duplicate content by specifying the original source for pages that are available on multiple URLs.> -->
<!-- <meta name="author" content="Malcolm Smith"> -->
<!-- <> -->
<!-- Control the behavior of search engine crawling and indexing -->
<meta name="robots" content="index,follow"><!-- All Search Engines, else "noindex, nofollow"-->
<meta name="googlebot" content="index,follow"><!-- Google Specific, else "noindex, nofollow" -->
<meta name="google" content="nositelinkssearchbox"><!-- Tells Google not to show the sitelinks search box -->
<!-- Geo tags -->
<meta name="ICBM" content="32.7152752,-117.1572166">
<meta name="geo.position" content="32.7152752,-117.1572166"><!-- Downtown San Diego -->
<meta name="geo.region" content="US-CA">
<!-- Country code (ISO 3166-1): mandatory, state code (ISO 3166-2): optional; eg. content="US" / content="US-NY" -->
<meta name="geo.placename" content="San Diego, CA"><!-- eg. content="New York City" -->
<!-- <link rel="license" href="LICENSE.html">Refers to a copyright statement that applies to the link's context -->
<title>Page Title</title>
</head>
<body>
<link rel="import" href="https://icanhazdadjoke.com">
</body>
</html>