-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (39 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- HTML Meta Tags -->
<title>Chord Trainer</title>
<meta name="description" content="Ukulele chord trainer">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://c0d3.ch/chord-trainer">
<meta property="og:type" content="website">
<meta property="og:title" content="Chord Trainer">
<meta property="og:description" content="Ukulele Chord Trainer">
<meta property="og:image" content="https://c0d3.ch/chord-trainer/assets/img/logo.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="c0d3.ch">
<meta property="twitter:url" content="https://c0d3.ch/chord-trainer">
<meta name="twitter:title" content="Chord Trainer">
<meta name="twitter:description" content="Ukulele Chord Trainer">
<meta name="twitter:image" content="https://c0d3.ch/chord-trainer/assets/img/logo.png">
<!-- Meta Tags Generated via https://www.opengraph.xyz -->
<!-- Try to run on gh pages -->
<meta http-equiv="Permissions-Policy" content="interest-cohort=(), user-id=()">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<script src="https://kit.fontawesome.com/f8bd9dde8e.js" crossorigin="anonymous"></script>
<link data-trunk rel="sass" href="assets/css/index.scss">
<link data-trunk rel="copy-dir" href="assets/">
</head>
<body>
<div class="container">
<h1>Chord Trainer</h1>
<div class="main"></div>
</div>
<div class="foot">
<i class="fab fa-github"><a href="https://github.com/fujexo/uke-chord-trainer"> Github</a></i> | Built by @fujexo | Powered by <i class="fab fa-rust"> Rust</i>
</div>
</body>
</html>