-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
52 lines (46 loc) · 2.69 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
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vectorscope</title>
<link rel="stylesheet" href="styles.css">
<!-- open graph tags -->
<meta property="og:title" content="Vectorscope" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://vectorscope.polarity.me" />
<meta property="og:image" content="/img/vectorscope-banner.png" />
<meta property="og:description" content="A vectorscope is a specialized oscilloscope used in audio and video applications. Unlike a traditional oscilloscope, which plots signal versus time, a vectorscope shows an X-Y plot of two signals to reveal their relationship. It functions similarly to an oscilloscope in X-Y mode." />
<meta property="og:site_name" content="Polarity Music" />
<meta property="og:locale" content="en_US" />
<meta property="og:locale:alternate" content="en_US" />
<!-- twitter tags -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Vectorscope" />
<meta name="twitter:description" content="A vectorscope is a specialized oscilloscope used in audio and video applications. Unlike a traditional oscilloscope, which plots signal versus time, a vectorscope shows an X-Y plot of two signals to reveal their relationship. It functions similarly to an oscilloscope in X-Y mode." />
<meta name="twitter:image" content="/img/vectorscope-banner.png" />
<!-- general tags -->
<meta name="description" content="Vectorscope">
<meta name="keywords" content="Vectorscope,Oscilloscope, Audio, Visualization">
<meta name="author" content="polarity">
<!-- favicon -->
<link rel="apple-touch-icon" sizes="256x256" href="/img/vectorscope-256.png">
<link rel="icon" type="image/png" sizes="128x128" href="/img/vectorscope-128.png">
<link rel="icon" type="image/png" sizes="64x64" href="/img/vectorscope-64.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/vectorscope-32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/vectorscope-16.png">
<!-- mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
</head>
<body>
<div id="vectorscope-app"></div>
<script type="module" src="js/main.js"></script>
<footer >
<a href="https://bit.ly/3PgbxZz">Support me</a>
| <a href="https://github.com/polarity/app.spectrogram">Github</a>
| <a href="https://polarity.me/">back to my site</a>
| <a href="https://spectrogram.polarity.me/">spectrogram analyzer</a>
| <a href="https://spectrum.polarity.me/">spectrum analyzer</a>
| <a href="https://vectorscope.polarity.me/">vectorscope</a>
</footer>
</body>
</html>