-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (79 loc) · 3.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<script src="js/def.js"></script>
<script src="js/jsstyle.js"></script>
<script src="js/item.js"></script>
<script src="js/option.js"></script>
<script src="js/page.js"></script>
<title>JavaScript Style Badge</title>
<link href="http://fonts.googleapis.com/css?family=Ubuntu|Droid+Serif|Droid+Sans+Mono" rel="stylesheet" type="text/css" />
<link href="css/page.css" rel="stylesheet" type="text/css" />
<link href="css/create.css" rel="stylesheet" type="text/css" />
<link href="css/nav.css" rel="stylesheet" type="text/css" />
<link href="css/badge.css" rel="stylesheet" type="text/css" />
<link href="css/decode.css" rel="stylesheet" type="text/css" />
<link href="css/about.css" rel="stylesheet" type="text/css" />
<link href="css/text.css" rel="stylesheet" type="text/css" />
</head>
<body onload="Page.init()" itemscope itemtype="http://schema.org/WebPage">
<section id="create">
<h2>Create your own JavaScript Style Badge</h2>
<button>Create the badge!</button>
</section>
<section id="decode">
<h2>Decode an existing data</h2>
<p>Paste the generated URL/JSON/signature into the area below:</p>
<textarea></textarea>
<p><button>Decode</button></p>
</section>
<section id="badge">
<h2>Behold! The mighty JavaScript Style Badge!</h2>
</section>
<section id="text">
<h2>Decoded answers</h2>
</section>
<section id="about">
<h2>How does it work?</h2>
<p><span itemprop="description">JavaScript Style Badge is a visual fingerprint of your coding preferences (and is somewhat similar to the <a href="http://en.wikipedia.org/wiki/Geek_Code">Geek Code</a>).</span> To create a badge, simply fill out a JavaScript-related questionnaire; you will be awarded with your very own visualisation.
<h2>What do people say about this project?</h2>
<!-- „ “ ” -->
<div>
<q>We absolutely love to see these on CVs!</q>
<span>Recruiter & co.</span>
</div>
<div>
<q>JS Style Badge is the best thing since rounded corners.</q>
<span>John Doe</span>
</div>
<div>
<q>Using JS Style Badge grows my beard an inch a day!</q>
<span>unnamed GNU developer</span>
</div>
<div>
<q>Our Scrum velocity increased by 1.7% after we grouped developers by their JS Style Badge!</q>
<span>Ronald McFoobar, Scrum Master</span>
</div>
<div>
<q>Shut up and take my money!</q>
<span>Phillip J. Fry</span>
</div>
</section>
<header>
<h1><a itemprop="name" href="#">JavaScript Style Badge :: Your JS Signature</a></h1>
<nav>
<ul>
<li><a href="#create">Create <span>Your own badge</span></a></li>
<li><a href="#decode">Decode <span>Read existing signature</span></a></li>
<li><a href="#about">About <span>What the hell is this?</span></a></li>
</ul>
</nav>
</header>
<footer>
Created by <a href="http://ondras.zarovi.cz/">Ondřej Žára</a>
</footer>
<script src="https://apis.google.com/js/plusone.js">{"parsetags": "explicit"}</script>
<script src="http://platform.linkedin.com/in.js" type="text/javascript"></script>
</body>
</html>