-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsummaryDetail.html
54 lines (51 loc) · 1.54 KB
/
summaryDetail.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
<!-- HTML5 Sandbox -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Summary and Details | HTML5 Sandbox</title>
<link rel="stylesheet" href="css/normalize.css">
<script src="js/script.js"></script>
</head>
<body>
<!-- Sectioning root -->
<header>
<h1>Simple <span>HTML5</span> page</h1>
</header>
<nav>
<ul>
<li><a href="headings.html">Headings</a></li>
<li><a href="summaryDetail.html">Summary & Detail</a></li>
<li><a href="time.html">Time</a></li>
<li><a href="translate.html">Translate</a></li>
<li><a href="mark.html">Mark</a></li>
<li><a href="microdata.html">Microdata</a></li>
</ul>
</nav>
<details>
<summary>
This is a summary
</summary>
<p>This is the detail of the summary</p>
<p>This is another detail</p>
</details>
<aside>
<h3>Tags</h3>
<ul class="tag-cloud">
<li><a href="" rel="tag" class="w2">user</a></li>
<li><a href="" rel="tag" class="w8">design</a></li>
<li><a href="" rel="tag" class="w3">color</a></li>
<li><a href="" rel="tag" class="w5">form</a></li>
</ul>
<h3>Table of content</h3>
<a href="javascript:(function(){...})();"
title="TableDeMatiere">
Click here for displaying the table of contents!
</a>
</aside>
<footer>
<p>2015 Simple HTML5 page</p>
</footer>
<script src="js/details.js"></script>
</body>
</html>