-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslate.html
39 lines (36 loc) · 1.29 KB
/
translate.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
<html>
<head>
<meta charset="utf-8">
<title>Time | 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>
<section>
<h1>Translate</h1>
<!-- Good practice to use heading elements after sectioning element -->
<h2>The <mark><translate></mark> tag in HTML5</h1>
<section> <!-- Sectioning element -->
<h1>Example translate tag</h1>
<p translate="no">This is a paragraph that will not be translated because the <mark><p translate="no"></mark> tag and attribute</p><p>This paragraph will be translated because it is not excluded with the translate tag.</p>
</section>
</section>
<footer>
<p>2015 Simple HTML5 page</p>
</footer>
</body>
</html>