-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (39 loc) · 1.12 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<head>
<title>Browser APIs Examples</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="header-footer">
<a href="index.html">
<h1>Examples of Browser APIs</h1>
</a>
</div>
<div class="container">
<div class="api-card">
<a href="./html/geolocation.html">
<h3>Geolocation API</h3>
<p>
Provides access to the device's geographical data.
</p>
</a>
</div>
<div class="api-card">
<a href="./html/webspeech.html">
<h3>Web Speech API</h3>
<p>
Provides speech recognition and speech synthesis (text to speech) functionality.
</p>
</a>
</div>
<div class="api-card">
<a href="./html/vibration.html">
<h3>Vibration API</h3>
<p>
Allows web developers to trigger vibration on a device.
</p>
</a>
</div>
</div>
</body>
</html>