-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.25 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
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8' />
<meta name='description' content='An icy currency converter.' />
<meta name='theme-color' content='#22a6b3' />
<meta name='viewport' content='width=device-width' />
<title>icy</title>
<link rel='stylesheet' href='theme.css' />
<link rel='stylesheet' href='main.css' />
<script defer src='main.js'></script>
<link rel='icon' href='icon.svg' />
</head>
<body>
<noscript>
<style>
img {
display: none;
}
</style>
<p>You must enable JavaScript.</p>
</noscript>
<img src='icon.svg' alt='icon' />
<main>
<h1>icy</h1>
<p>An icy currency converter.</p>
<section>
<label>
Amount:
<input type='number' placeholder='1' />
</label>
<div>
<label>
From:
<select></select>
</label>
<label>
To:
<select></select>
</label>
</div>
</section>
<p>The result will appear here.</p>
<footer>
<p>
<a href='https://github.com/often/icy' target='_blank' rel='noreferrer'>GitHub</a>
</p>
</footer>
</main>
</body>
</html>