-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (65 loc) · 2.19 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://kit.fontawesome.com/0fb81c7629.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
<title>Download Mood-Fi!</title>
</head>
<body>
<!-- ** FLOAT ACTION BUTTON CONTENT ** -->
<div class="float-action-button">
<input type="checkbox" id="btn" />
<label for="btn" class="float-button">
<i class="fa-solid fa-plus"></i>
</label>
<div class="float-card">
<a
href="https://github.com/KaykyDeSouzaDias/Mood-Fi"
class="github-button"
><i class="fa-brands fa-github"></i> CHECK OUT THE PROJECT</a
>
<a
href="https://www.producthunt.com/posts/mood-fi"
class="product-hunt-button"
><i class="fa-brands fa-product-hunt"></i> GIVE A FEEDBACK</a
>
</div>
</div>
<!-- ** MAIN PAGE (DOWNLOAD) CONTENT ** -->
<section class="download-section" id="download">
<div class="download-content">
<img class="download-image" src="imgs/app-image/watchlive.PNG" alt="" />
<div class="download-buttons">
<h1>DOWNLOAD NOW!</h1>
<div class="downloads">
<div class="windows-button">
<a
id="windows-download"
href="app-download/win/Mood-fi_2.0.1_x64_en-US.msi.zip"
download
><i class="fa-brands fa-windows"></i
></a>
</div>
<div class="linux-button">
<a
id="linux-download"
href="app-download/linux/mood-fi_2.0.1_amd64.AppImage.tar.gz"
><i class="fa-brands fa-linux"></i
></a>
</div>
<div class="linux-button">
<a id="linux-download" href="app-download/mac/Mood-fi.app.tar.gz">
<i class="fa-brands fa-apple"></i>
</a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>