blob: 480556a35ce695c08b558cc70a94d3de0942bd34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---
tags:
- html
- web
---
![[Pasted image 20250506224453.png]]
```
<body>
<header>Header</header>
<nav>Nav</nav>
<main>
<article>First post</article>
<article>Second post</article>
</main>
<aside>Aside</aside>
<footer>Footer</footer>
</body>
```
Main: 1 per page; main contnet
Aside: tangentially related content; complementary
Article: represents a completely standalone piece of content, reusable.
Section: Used if no more specific element exists; should have a heading most of the time.
|