-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 994 Bytes
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title data-l10n-id="app-name">Tweet this page</title>
<link rel="stylesheet" type="text/css" href="style/headers.css">
<link rel="resource" type="application/l10n" href="locales/locales.ini" />
<style>
html, body {
margin:0;
padding:0;
}
html {
font-size:10px;
}
p {
margin:1rem;
font-size:1.6em;
line-height:1.2;
}
</style>
<script src="js/app.js" defer></script>
<script src="js/l10n.js"></script>
</head>
<body>
<section class="skin-dark" role="region">
<header><h1 data-l10n-id="app-name">Tweet this page</h1></header>
<p data-l10n-id="app-description">This application is sololy intended to add "Tweet this page" to the browser's "share" menu. You don't need to manually launch this application. Thank you.</p>
</section>
</body>
</html>