-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathexample.html
More file actions
55 lines (55 loc) · 1.12 KB
/
example.html
File metadata and controls
55 lines (55 loc) · 1.12 KB
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
<body class="Document">
<div class="Page" data-page-number="1">
<header class="Header">
<h1 class="Title">
Header
</h1>
<time class="CalendarDate">
Date: October 30, 2023
</time>
</header>
<form class="Form">
<label class="FormField" for="company-name">
From field name
</label>
<input class="FormFieldValue" value="Example value"/>
</form>
<section class="Section">
<table class="Table">
<thead class="TableHeader">
<tr class="TableRow">
<th class="TableCellHeader">
Description
</th>
<th class="TableCellHeader">
Row header
</th>
</tr>
</thead>
<tbody class="TableBody">
<tr class="TableRow">
<td class="TableCell">
Value description
</td>
<td class="TableCell">
<span class="Currency">
50 $
</span>
<span class="Measurement">
(1.32 %)
</span>
</td>
</tr>
</tbody>
</table>
</section>
<section class="Section">
<h2 class="Subtitle">
2. Subtitle
</h2>
<p class="NarrativeText">
Paragraph text
</p>
</section>
</div>
</body>