-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (57 loc) · 2.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Look up the wrong-side equivalents of common knit stitches based on their abbreviations."
/>
<title>Knit on the Wrong Side</title>
<link href="https://fonts.googleapis.com/css?family=Nunito|PT+Serif&display=swap" rel="stylesheet" />
<script src="https://kit.fontawesome.com/c3d908693d.js" crossorigin="anonymous"></script>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<div id="form-container">
<form>
<span class="h1">
What is <input id="abbreviation" type="text" placeholder="k" /> on the WS?
</span>
<p class="center"><label for="abbreviation">Enter a RS <strong><em>abbreviation</em></strong>.</label></p>
<p id="find-out" class="hide">
<button type="submit">Find out!</button>
</p>
</form>
</div>
<div id="answer">
<span id="result"></span>
</div>
<footer>
<p>Created by <a href="http://rachelleggett.com" target="_blank" rel="noopener noreferrer">Rachel Leggett</a>.
<span class="social">
<a href="https://ravelry.com/people/arbortwist" target="_blank" rel="noopener noreferrer" aria-label="Visit my Ravelry profile.">
<span aria-hidden="true" class="grow fab fa-ravelry"></span>
</a>
<a href="https://instagram.com/arbortwist" target="_blank" rel="noopener noreferrer" aria-label="Visit my Instagram.">
<span aria-hidden="true" class="grow fab fa-instagram"></span>
</a>
<a href="https://twitter.com/rleggos" target="_blank" rel="noopener noreferrer" aria-label="Visit my Twitter profile.">
<span aria-hidden="true" class="grow fab fa-twitter"></span>
</a>
<a href="https://www.linkedin.com/in/rmleg/" target="_blank" rel="noopener noreferrer" aria-label="Visit my LinkedIn profile.">
<span aria-hidden="true" class="grow fab fa-linkedin-in"></span>
</a>
<a href="https://github.com/rmleg" target="_blank" rel="noopener noreferrer" aria-label="Visit my Github profile.">
<span aria-hidden="true" class="grow fab fa-github"></span>
</a>
</span>
</p>
</footer>
</div>
<script src="index.js"></script>
</body>
</html>