-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (40 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href="style.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<title>Sigton's Shop</title>
</head>
<link rel="icon" href="icon.png" type="image/png">
<body>
<div class="container">
<div class="title">
<img src="https://cdn2.scratch.mit.edu/get_image/gallery/3735023_900x200.png?v=1485373541.8#1485373543161" alt="Sigton's Shop of Code, Art and Advertising" align="center" /><br />
<span class='fancy'>Sigton's Shop</span><br/><i>Of code, help, and advertisement</i><br/>
</div>
<!-- <div class="important"><b>NOTE 1: THIS IS NOT A REAL SHOP</b></div> -->
<nav>
<ul class="navigation">
<li><a href="https://SigtonShop.github.io" class="active">Home</a></li>
<li><a href="Examples">See examples</a></li>
<li><a href="Staff">Our Staff</a></li>
<li><a href="Orders">Current Orders</a></li>
<li><a href="OrderForm">Order Something!</a></li>
</ul>
</nav>
<h1 class="fancy">Collect an order</h1>
<main>
Hello! Hopefully you came from <a href="https://scratch.mit.edu/discuss/topic/236700/" target="_blank">
here</a>. If not, go there and order something! If you have recieved an order number, type it in below to get your order! Go <a href="https://sigtonshop.github.io/Examples.html" target="_blank">here</a> to see some examples of our Shop's work<br/>
<input placeholder="xxxx" type="number" id="in" onload="this.value = location.hash.slice(1);" /><button class="order-button">Search!</button><div id="out"></div>
</main>
</div>
<footer>
<div class="important"><b>NOTE: All content on this page is licenced under a
<a href="https://creativecommons.org/licenses/by-sa/2.0/legalcode" target="_blank">
CC-BY-SA licence</a></b></div>
</footer>
</body>
</html>