-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
311 lines (289 loc) · 9.85 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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Utilities</title>
<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
<link rel="mask-icon" href="/mask-icon.svg" color="#FFFFFF" />
<meta name="theme-color" content="#1a1a1a" />
<meta property="title" content="Brian Poblete's HTML Template" />
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://res.cloudinary.com/dvivrw9ml/image/upload/c_fill,w_1200,h_630,g_auto/v1711313936/CleanShot_2024-03-24_at_16.58.36_q2qrk3.png"
/>
<meta property="og:url" content="https://brianmp.dev" />
<meta property="og:title" content="Brian Poblete's HTML Template" />
<meta
property="og:description"
content="A simple HTML template for personal projects. Includes meta tags for social media sharing and PWA support."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@brianmpdotdev" />
<meta property="twitter:domain" content="brianmp.dev" />
<meta property="twitter:url" content="https://brianmp.dev" />
<meta name="twitter:title" content="Brian Poblete's HTML Template" />
<meta
name="twitter:description"
content="A simple HTML template for personal projects. Includes meta tags for social media sharing and PWA support."
/>
<meta
name="twitter:image"
content="https://res.cloudinary.com/dvivrw9ml/image/upload/c_fill,w_1200,h_630,g_auto/v1711313936/CleanShot_2024-03-24_at_16.58.36_q2qrk3.png"
/>
<meta name="twitter:image:alt" content="Brian Poblete's HTML Template" />
<meta name="twitter:creator" content="@brianmpdotdev" />
</head>
<style>
@import url("https://unpkg.com/[email protected]/open-props.min.css");
@import url("https://unpkg.com/[email protected]/normalize.min.css");
a:hover {
outline: var(--size-0, 0.125rem) solid var(--blue-5, Highlight);
outline-offset: var(--size-1);
border-radius: var(--size-0, 0.125rem);
}
h1,
h2 {
text-align: center;
}
p {
margin: 2rem auto;
}
main {
max-width: 80ch;
margin: 0 auto;
padding: 4rem 0;
}
section {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
max-width: 100vw;
row-gap: var(--size-5, 1rem);
}
</style>
<body>
<main>
<h1>My HTML template.</h1>
<p>
This HTML file serves as a basic template file complete with the
appropriate meta tags for social media sharing and PWA support. Start by
deleting all of this HTML in the body and style tags. Then replace the
meta tags with your own information.
</p>
<p>
I have also linked a bunch of utilities I have found very useful for web
development. These include things like CSS solutions, website hosts,
development tools, etc. Hopefully you'll find something useful here!
</p>
<h2>Recommended utilities:</h2>
<section>
<!-- Tooling: Vite, Vite PWA, Bun, pnpm, fnm -->
<ul>
<h3>Tooling</h3>
<li>
<a href="https://vitejs.dev/">Vite</a>
</li>
<li>
<a href="https://vite-pwa-org.netlify.app/">Vite PWA</a>
</li>
<li>
<a href="https://bun.sh/">Bun</a>
</li>
<li>
<a href="https://pnpm.io/">pnpm</a>
</li>
<li>
<a href="https://fnm.vercel.app">fnm</a>
</li>
</ul>
<!-- Frameworks: Astro, SolidJS, Alpine JS, HTMX, Svelte/ SvelteKit, React -->
<ul>
<h3>Frameworks</h3>
<li>
<a href="https://astro.build/">Astro</a>
</li>
<li>
<a href="https://solidjs.com/">SolidJS</a>
</li>
<li>
<a href="https://svelte.dev/">Svelte</a>
</li>
<li>
<a href="https://kit.svelte.dev/">SvelteKit</a>
</li>
<li>
<a href="https://reactjs.org/">React</a>
</li>
<li>
<a href="https://alpinejs.dev/">Alpine JS</a>
</li>
<li>
<a href="https://htmx.org/">HTMX</a>
</li>
</ul>
<ul>
<h3>Styling</h3>
<li>
<a href="https://open-props.style/">Open Props</a>
</li>
<li>
<a href="https://tailwindcss.com/">Tailwind CSS</a>
</li>
<li>
<a href="https://picocss.com/">Pico CSS</a>
</li>
<li>
<a href="https://heroicons.com/">Heroicons</a>
</li>
<li>
<a href="https://phosphoricons.com/"> Phosphor Icons</a>
</li>
<li>
<a
href="https://github.com/Brian-Pob/utilities/blob/main/reset.css/"
>Brian Poblete's CSS reset</a
>
</li>
<li>
<a href="https://postcss.org/"> PostCSS</a>
</li>
<li>
<a href="https://sass-lang.com/">Sass</a>
</li>
<li>
<a href="https://www.tailwindgen.com/">Tailwind Grid Generator</a>
</li>
<li>
<a href="https://cssgrid-generator.netlify.app/"
>CSS Grid Generator</a
>
</li>
<li>
<a href="https://grid.layoutit.com/"></a>Alternative CSS Grid
Generator
</li>
</ul>
<!-- Development: VS Code, Zed, Neovim, Vim, Prettier, Warp, Tabby, CodeWhisperer -->
<ul>
<h3>Development</h3>
<li>
<a href="https://code.visualstudio.com/">VS Code</a>
</li>
<li>
<a href="https://zed.dev/">Zed</a>
</li>
<li>
<a href="https://neovim.io/">Neovim</a>
</li>
<li>
<a href="https://www.vim.org/">Vim</a>
</li>
<li>
<a href="https://prettier.io/">Prettier</a>
</li>
<li>
<a href="https://warp.dev/">Warp</a>
</li>
<li>
<a href="https://tabby.sh/">Tabby</a>
</li>
<li>
<a
href="https://aws.amazon.com/blogs/devops/introducing-amazon-codewhisperer-for-command-line/"
>CodeWhisperer</a
>
</li>
</ul>
<!-- Hosting: Vercel, Cloudflare Pages, GitHub Pages, Netlify -->
<ul>
<h3>Hosting and Deployment</h3>
<li>
<a href="https://vercel.com/">Vercel</a>
</li>
<li>
<a href="https://pages.cloudflare.com/">Cloudflare Pages</a>
</li>
<li>
<a href="https://pages.github.com/">GitHub Pages</a>
</li>
<li>
<a href="https://www.netlify.com/">Netlify</a>
</li>
<li><a href="https://deno.com/deploy">Deno Deploy</a></li>
<li><a href="https://fly.io/">Fly.io</a></li>
</ul>
<!-- Image creation and management: Canva, Figma, Cloudinary, Excalidraw -->
<ul>
<h3>Design tools and media management</h3>
<li>
<a href="https://www.canva.com/">Canva</a>
</li>
<li>
<a href="https://www.figma.com/">Figma</a>
</li>
<li>
<a href="https://cloudinary.com/">Cloudinary</a>
</li>
<li>
<a href="https://excalidraw.com/">Excalidraw</a>
</li>
<li><a href="https://penpot.app/">Penpot</a></li>
</ul>
<!-- Testing: SocialSharePreview, CoyWolf OG Checker, Wappalyzer, WAVE Accessibility Tool -->
<ul>
<h3>Testing</h3>
<li>
<a href="https://socialsharepreview.com/">SocialSharePreview</a>
</li>
<li>
<a href="https://coywolf.pro/social/open-graph-checker/"
>CoyWolf OG Checker</a
>
</li>
<li>
<a href="https://www.wappalyzer.com/">Wappalyzer</a>
</li>
<li>
<a href="https://wave.webaim.org/">WAVE Accessibility Tool</a>
</li>
</ul>
<!-- Version control & SCM: GitHub, GitLab -->
<ul>
<h3>Version control & SCM</h3>
<li>
<a href="https://github.com">GitHub</a>
</li>
<li>
<a href="https://gitlab.com">GitLab</a>
</li>
</ul>
<!-- Browsers: Arc, Firefox -->
<ul>
<h3>Browsers</h3>
<li><a href="https://arc.net">Arc</a></li>
<li><a href="https://www.mozilla.org/firefox/">Firefox</a></li>
</ul>
<!-- AI Toos: GitHub Copilot, ChatGPT, Google Gemini, Anthropic Claude -->
<ul>
<h3>AI Tools</h3>
<li><a href="https://copilot.github.com/">GitHub Copilot</a></li>
<li><a href="https://chat.openai.com/">ChatGPT</a></li>
<li><a href="https://gemini.google.com">Google Gemini</a></li>
<li><a href="https://claude.ai/chats/">Anthropic Claude</a></li>
<li><a href="https://codeium.com/">Codeium</a></li>
</ul>
<!-- VMs and Containers: VirtualBox, VMWare, Docker, Podman -->
<ul>
<h3>VMs and Containers</h3>
<li><a href="https://www.virtualbox.org/">VirtualBox</a></li>
<li><a href="https://www.vmware.com/">VMWare</a></li>
<li><a href="https://www.docker.com/">Docker</a></li>
<li><a href="https://podman.io/">Podman</a></li>
</ul>
</section>
</main>
</body>
</html>