-
Notifications
You must be signed in to change notification settings - Fork 2
/
irish-language-of-parts-demo.html
21 lines (19 loc) · 1.87 KB
/
irish-language-of-parts-demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<title>Language-of-Parts Demonstration using English and Irish</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>Language-of-Parts Demonstration using English and Irish</h1>
<p>This page (as a whole) is identified as English, using an attibute on the HTML root element.</p>
<p>The following heading contains a span which is correctly identified as Irish, using a <code>lang="ga"</code> HTML atttribute:</p>
<h2> Easter<br><span lang="ga">An Cháisc</span> </h2>
<blockquote>There will be a particular concentration of centenary commemorative events in Dublin on Easter Sunday and Easter Monday, 27th - 28th March, with a mixture of formal ceremonial occasions and informal cultural and historical events.</blockquote>
<p>The following paragraph is NOT correctly identified as Irish:</p>
<blockquote>Beidh líon níos mó ócáidí cuimhneacháin á reáchtáil i mBaile Átha Cliath agus ar fud na tíre Domhnach Cásca agus Luan Cásca, an 27-28 Márta, le meascán de shearmanais fhoirmeálta agus ócáidí cultúrtha agus stairúla neamhfhoirmeálta.</blockquote>
<p>The following paragraph is correctly identified as Irish using a <code>lang="ga"</code> HTML attribute:</p>
<blockquote lang="ga">Beidh líon níos mó ócáidí cuimhneacháin á reáchtáil i mBaile Átha Cliath agus ar fud na tíre Domhnach Cásca agus Luan Cásca, an 27-28 Márta, le meascán de shearmanais fhoirmeálta agus ócáidí cultúrtha agus stairúla neamhfhoirmeálta.</blockquote>
</body>
</html>