[[dev-notes]]
notes
#
- article tag is for items
- if a tag has a hypen - then it is a web component
is definition list, used for key values,- term
- definition
- usefule for displaying meta data
- ?? null coaelescing operator, returns the first defined value
link
query selectors
code snippets
#
1
| <noscript>need javascript enabled...</noscript>
|
<template shadowmode="closed">
1
2
3
| <meta http-equiv="refresh" content="10" />
<meta name="darkreader-lock">
<meta name="color-scheme" content="light dark">
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="darkreader-lock">
<link rel="stylesheet" href="style.css">
<title>title</title>
</head>
<body>
<h1>Header</h1>
<script src="script.js"></script>
</body>
</html>
|