-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
248 lines (200 loc) · 8.65 KB
/
index.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<!doctype html>
<!-- head.html ----------------------------------------------------------->
<title>devPunks.studio</title>
<meta charset=utf-8 ><!-- Must appear first! https://code.google.com/archive/p/doctype-mirror/wikis/ArticleUtf7.wiki -->
<meta name='color-scheme' content='dark light'>
<meta name=robots content='noindex,nofollow,noarchive'><!-- https://www.conductor.com/academy/meta-robots-tag -->
<!-- https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag -->
<meta name=googlebot content='noindex,nofollow,noarchive,nosnippet,notranslate'>
<meta name=googlebot-news content='noindex,nofollow,noarchive,nosnippet,notranslate'>
<!-- https://developer.chrome.com/blog/300ms-tap-delay-gone-away -->
<!-- https://developer.mozilla.org/en-US/docs/Web/CSS/Viewport_concepts -->
<!-- https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag -->
<meta name=viewport content='viewport-fit=cover,width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=2.0' >
<!-- Sharable https://css-tricks.com/essential-meta-tags-social-media -->
<!-- PWA Checklist - https://github.com/h5bp/html5-boilerplate/blob/master/dist/doc/extend.md -->
<link rel=canonical href=/ >
<link rel=stylesheet href=index.css >
<link rel=manifest href=index.webmanifest >
<!-- Link rel=modulepreload href=index.js -->
<link rel=preload as=script href=index.js >
<link rel=preload as=script href=https://unpkg.com/snuggsi >
<!-- https://html.spec.whatwg.org/multipage/semantics.html#meta-theme-color -->
<meta name=theme-color content=#000000 >
<!-- https://support.google.com/customsearch/answer/1626955 -->
<meta name=thumbnail content=/icons/index.svg >
<!-- https://html.spec.whatwg.org/multipage/semantics.html#meta-description -->
<meta name=description content=devPunks.studio >
<!-- https://html.spec.whatwg.org/multipage/semantics.html#meta-application-name -->
<meta name=application-name content=devPunks.studio >
<!-- Favicon Standard
- https://emergeinteractive.com/insights/detail/the-essentials-of-favicons
- https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs
- https://stackoverflow.com/q/48956465/favicon-standard-2020-svg-ico-png-and-dimensions
-->
<!-- Icons - https://realfavicongenerator.net -->
<link rel=icon media='( prefers-color-scheme: dark )' href=favicon.ico ><!-- 32x32 -->
<link rel=icon media='( prefers-color-scheme: light )' href=favicon.ico ><!-- 32x32 -->
<!-- https://html.spec.whatwg.org/multipage/links.html#rel-icon -->
<!-- SVG - https://css-tricks.com/svg-favicons-and-all-the-fun-things-we-can-do-with-them -->
<link rel=icon sizes=any type=image/svg+xml href=/icons/index.svg >
<!-- Apple -->
<!-- iOS https://dev.to/oskarlarsson/designing-native-like-progressive-web-apps-for-ios-510o -->
<meta name=apple-mobile-web-app-capable content=yes >
<meta name=application-name content=devPunks.studio >
<meta name=apple-mobile-web-app-title content=devPunks.studio >
<meta name=apple-mobile-web-app-status-bar-style content=black-translucent >
<!-- https://github.com/whatwg/html/pull/2230 -->
<!-- IOS bookmark icon https://css-tricks.com/snippets/html/set-iphone-bookmark-icon -->
<link rel=mask-icon href=icons/safari-pinned-tab.svg color=#555555 >
<link rel=apple-touch-icon sizes=180x180 href=icons/apple-touch-icon.png >
<link rel=apple-touch-icon-precomposed sizes=180x180 href=icons/apple-touch-icon.png >
<!-- Microsoft -->
<meta name=theme-color content=#ff00ff >
<meta name=msapplication-config content=none >
<meta name=msapplication-tap-highlight content=no >
<meta name=msapplication-TileColor content=#555555 >
<meta name=msapplication-square150x150logo content=icons/index.150x150.png >
<!-- Open Graph - https://ogp.me -->
<meta property=og:type content=website >
<meta property=og:image content=index.png >
<meta property=og:url content=devPunks.studio >
<meta property=og:title content=devPunks.studio >
<meta property=og:site_name content=devPunks.studio >
<meta property=og:description content='FREE studio tools for content creators.' >
<!-- Twitter - https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/markup -->
<meta name=twitter:site content=@devPunks >
<meta name=twitter:card content=summary_large_image >
<meta name=twitter:image:alt content='FREE studio tools for content creators.' >
<!-- Scripts -->
<script src=https://unpkg.com/snuggsi></script>
<script src=index.js></script>
<!-- head.html ----------------------------------------------------------->
<body role=application lang=en tabIndex=0 >
<!-- header.html --------------------------------------------------------->
<!-- Skip Nav Links - https://a11yproject.com/posts/skip-nav-links -->
<!-- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#Skip_links -->
<a title=Skip href=#main>Skip to main content</a>
<a type=image/*
rel=alternate
href=index.png
target=download
download=index.png
title='Download icon'
ping=https://postman-echo.com/post>
download icon
</a>
<a ping='foo https://postman-echo.com/post' rel=external target=stackoverflow href=https://stackoverflow.com/q/24971923/what-is-text-ping-and-is-this-a-new-standard-is-it-browser-dependent>ping</a>
<header>
<nav aria-label='Site Navigation'>
<ul>
<li><a title=Lyrics href=/lyrics>Lyrics</a>
</ul>
</nav>
<search spellcheck=true>
<form id=search action=?>
<label>Search
<input required id=🔎search list=🔎searches name=🔎search type=search
results=3 spellcheck=true enterkeyhint=search title=🔎Search placeholder='Search for…?' aria-label='Searchh for…?'>
</label>
<datalist id=🔎searches>
<option>Foo
<option>Bar
<option>Baz
<option>Bat
<option>Bam
</datalist>
<button>Search</button>
<a rel=tags href=tags title=tags>tags</a>
</form>
</search>
</header>
<!-- header.html --------------------------------------------------------->
<hgroup>
<h1>devPunks<span>.studio</span></h1>
</hgroup>
<picture title='devPunks studio'>
<source type=image/png srcset=index.png >
<source type=image/webp media=(min-width:600px) srcset=pictures/mixer.webp >
<img alt='devPunks studio' srcset='index.png 2x' src=index.png >
</picture>
<main id=main>
<nav>
<header>Which session would you like to create?</header>
<ul>
<li><a title='Create Audio Session' href=audio>Audio</a>
<li><a title='Create Video Session' href=video>Video</a>
</ul>
</nav>
<foo-bar>
<header>foo-bar</header>
<table>
<caption>Table Caption</caption>
<thead>
<tr><th>This is the table header <time datetime='{time}'>{date}</time>
</thead>
<tbody>
<template name=table role=row hidden>
<tr>
<td>FOOOIN! {foo}</td>
</tr>
</template>
</tbody>
<tfoot>
<tr><th colspan=1>This is the table footer</th></tr>
</tfoot>
</table>
<label>Microphones
<select>
<template name=microphones>
<option id=microphone{#} title='Microphone {#} {self}'>Microphone Input {#} {self}
</template>
</select>
</label>
<script>
Element `foo-bar`
(class extends HTMLElement {
get microphones () {
return [
'Sennheiser 416T (Silver)'
, 'Sennheiser 418T (Silver)'
]
} // .microphones
get date ()
{ return ( new Date ).toLocaleDateString () } // .date
get time ()
{ return ( new Date ).toLocaleTimeString () } // .time
get table () {
return [
{ foo: 'What do we have here?!' }
, { foo: 'ANOTHER ONE' }
, { foo: 'Lorem ipsum dolor sit amet. The quick brown fox jumped over the lazy dog.' }
]
} // .table
})
</script>
</foo-bar>
</main>
<aside>
<header>Aside</header>
<ul>
<li>
<a rel=external target=external
href=https://medium.com/@WebReflection/dom-handleevent-a-cross-platform-standard-since-year-2000-5bf17287fd38>DOM handleEvents</a>
<li>
<a rel=external target=github
href=https://github.com/WebKit/webkit/commit/2ee15a43f1073459c449aac652530a6814587685>Custom Element Upgrade</a>
<li>
<a rel=external target=github
href=https://github.com/whatwg/html/pull/4237/files>Add a nonintuitive disconnectedCallback example</a>
</aside>
<!-- footer.html -->
<footer>
<github-ribbon>
<a rel=external title=Github target=github href=https://github.com/devpunks/studio>View on Github</a>
</github-ribbon>
<styles-guide>
<a rel=help title='Styles Guide' target=styles href=/styles>Styles Guide</a>
</styles-guide>
<a accesskey=0 title='Accessibility Statement' href=accessibility.html>Accessibility Statement</a>
</footer>