-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontent.html
128 lines (126 loc) · 3.75 KB
/
content.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
---
altLangPage: "content-fr.html"
dateModified: "2025-02-12"
description: "Office of the Auditor General of Canada content page"
language: "en"
title: "OAG - content page"
layout: default
---
<section>
<h2>Heading 2 (<code>h2</code>)</h2>
<section>
<h3>Heading 3 (<code>h3</code>)</h3>
<section>
<h4>Heading 4 (<code>h4</code>)</h4>
<section>
<h5>Heading 5 (<code>h5</code>)</h5>
<section>
<h6>Heading 6 (<code>h6</code>)</h6>
<p>Paragraph - default appearance</p>
</section>
</section>
</section>
</section>
</section>
<p><a href="#">Link</a></p>
<ul>
<li>unordered list (<code>ul</code>) - level 1
<ul>
<li>unordered list (<code>ul</code>) - level 2
<ul>
<li>unordered list (<code>ul</code>) - level 3</li>
</ul>
</li>
</ul>
</li>
</ul>
<ol>
<li>ordered list (<code>ol</code>) - level 1</li>
<li>ordered list (<code>ol</code>) - level 1
<ol>
<li>ordered list (<code>ol</code>) - level 2</li>
<li>ordered list (<code>ol</code>) - level 2
<ol>
<li>ordered list (<code>ol</code>) - level 3</li>
<li>ordered list (<code>ol</code>) - level 3</li>
</ol>
</li>
</ol>
</li>
</ol>
<table class="table table-striped">
<caption>Table caption</caption>
<thead>
<tr>
<th scope="col">Table header (<code>th</code>)</th>
<th scope="col">Table header (<code>th</code>)</th>
<th scope="col">Table header (<code>th</code>)</th>
<th scope="col">Table header (<code>th</code>)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Table data (<code>td</code>)</td>
<td>Table data (<code>td</code>)</td>
<td>Table data (<code>td</code>)</td>
<td>Table data (<code>td</code>)</td>
</tr>
<tr>
<td>Table data (<code>td</code>)</td>
<td>Table data (<code>td</code>)</td>
<td>Table data (<code>td</code>)</td>
<td>Table data (<code>td</code>)</td>
</tr>
<tr>
<td>Table data (<code>td</code>)</td>
<td>Table data (<code>td</code>)</td>
<td>Table data (<code>td</code>)</td>
<td>Table data (<code>td</code>)</td>
</tr>
</tbody>
</table>
<form method="post" action="#" class="form-horizontal">
<div class="form-group">
<label for="data1" class="col-sm-3 control-label">Form <code>input</code></label>
<div class="col-sm-9">
<input type="text" id="data1" name="data1" class="form-control" />
</div>
</div>
<div class="form-group">
<label for="data2" class="col-sm-3 control-label">Form <code>textarea</code></label>
<div class="col-sm-9">
<textarea id="data2" rows="3" cols="15" name="data2" class="form-control"></textarea>
</div>
</div>
<div class="form-group">
<label for="data4" class="col-sm-3 control-label">Form <code>select</code></label>
<div class="col-sm-9">
<select name="data4" id="data4" class="form-control">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
<option value="4">Option 4</option>
</select>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-3 col-sm-9">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</form>
<blockquote>
<p>"<code>blockquote</code>"
Different example text. Different example text. Different example text. Different example text. Different example text. Different example text. Different example text. Different example text.
</p>
</blockquote>
<p>— Author<br> Example text</p>
<h2> Default panel</h2>
<section class="panel panel-default">
<header class="panel-heading">
<h3 class="panel-title">Panel title</h3>
</header>
<div class="panel-body">
<p>Panel body</p>
</div>
</section>