-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
39 lines (34 loc) · 1.63 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Gimmie Dat iCon</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<header>
<h1><a href="./">Gimmie Dat iCon</a></h1>
<p>Retrieve full-sized icon artwork for iOS & Mac apps.</p>
</header>
<main>
<form class="submit">
<input type="url" placeholder="iTunes Link...">
<button type="submit">→</button>
</form>
<div class="wrapper">
<div class="content">
<p><strong>Enter a valid iTunes app store link, i.e.</strong> <a href="https://itunes.apple.com/us/app/twitter/id333903271?mt=8">https://itunes.apple.com/us/app/twitter/id333903271?mt=8</a></p>
<img src="assets/img/icon-placeholder.svg" alt="Icon placeholder" />
</div>
</div>
</main>
<footer>
<a href="http://webdesign.tutsplus.com/series/building-a-mini-api-driven-web-app--cms-866"><img src="assets/img/tuts-logo.svg" alt="Tuts+ Logo" /></a>
<p>A <a href="http://webdesign.tutsplus.com/series/building-a-mini-api-driven-web-app--cms-866">Web Design tutorial</a> authored by <a href="http://jim-nielsen.com/">Jim Nielsen</a> (<a href="http://twitter.com/jimniels">@jimniels</a>)</p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>