forked from jgthms/html-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.88 KB
/
Copy pathindex.html
File metadata and controls
52 lines (48 loc) · 1.88 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
---
layout: single
elementName: hgroup
---
<section id="hgroup" class="element element--experimental">
<header class="element-header">
<nav class="element-links">
<span>
Type: <strong>block</strong>
</span>
<span>
Self-closing:
<strong>
No
</strong>
</span>
<a class="element-links-direct" href="{{site.url}}/element/hgroup/" data-element-name="hgroup" data-tooltip="Single page for this element">Permalink</a>
<a class="element-share" data-tooltip="Share on Twitter or Facebook" data-element-name="hgroup">Share</a>
<a target="_blank" href="https://developer.mozilla.org/en/docs/Web/HTML/Element/hgroup" data-tooltip="See on Mozilla Developer Network" rel="external">MDN</a>
</nav>
<h2 class="element-name">
<a href="#hgroup">
<span>#</span>
hgroup
</a>
<span class="tag tag--experimental">Experimental</span>
</h2>
<div class="element-description">
<p>Defines the <strong>heading</strong> of a section. It can only contain heading levels: <code><h1></code> <code><h2></code> <code><h3></code> <code><h4></code> <code><h5></code> <code><h6></code></p>
</div>
</header>
<div id="hgroup-example-0" class="example">
<p class="example-label">
<strong>Example:</strong>
<a class="example-clipboard" data-tooltip="Click to copy code" data-clipboard-target="#hgroup-example-0-code">Copy</a>
</p>
<article class="example-preview">
<div class="example-output"><hgroup>
<h1>{{site.title}}</h1>
<h2>{{site.description}}</h2>
</hgroup></div>
<div id="hgroup-example-0-code" class="example-code">{% highlight html %}<hgroup>
<h1>{{site.title}}</h1>
<h2>{{site.description}}</h2>
</hgroup>{% endhighlight %}</div>
</article>
</div>
</section>