-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (26 loc) · 1004 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Web Share Api</title>
<meta name="viewport" content="width=device-width">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Web Share API</h1>
<h2>A simple test</h2>
<div class="description">
<p>We can use Web Share API for implementing a simple sharing functionality in a Mobile Web App.</p>
<p>This API is available on the latest version of Chrome for Android.</p>
<p>For a complete list of compatible browsers you can check <a target="_blank" href="https://caniuse.com/#search=web%20share">this page</a></p>
</div>
<div class="share">
<p>Click on the button for testing sharing functionality</p>
<button type="button" id="share-button"><img src="share.png"> <span>Share</span></button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>