-
Notifications
You must be signed in to change notification settings - Fork 0
/
html-template.html
25 lines (25 loc) · 932 Bytes
/
html-template.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bitcoin Audional Generator</title>
<!-- include styles.css -->
<link rel="stylesheet" href="/styles/styles.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<div class="header">
<img src="/images/AudionalsLogo.png" alt="Audionals Logo" />
<h1>Audionals.com</h1>
<img src="/images/AudionalsLogo.png" alt="Audionals Logo" />
</div>
<button class="info-button" onclick="toggleInfo()">
What are Audionals?
</button>
<div id="main-content"></div>
</body>
<script type="module" src="/js/main.js"></script>
<script src="/js/gammaApi.js"></script>
</html>