-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguide.html
117 lines (110 loc) · 3.41 KB
/
guide.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="robots" content="noindex" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Style Guide</title>
<link rel="stylesheet" href="css/main-v1.3.css" type="text/css" media="all" />
<script src="js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body class="sectioned anchored-footer">
<header class="content-break">
<h1>Style Guide</h1>
<nav>
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Guide</a>
</li>
</ul>
</nav>
<p>An example of how the latest style guide default looks.</p>
</header>
<section>
<header>
<h1>
Article Header
</h1>
<p>Article Subtitle.</p>
</header>
<article>
<h1>Headings!</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<a href="#anchor" name="anchor"><h3>Anchor</h3></a>
<p>
Paragraph text <br />
and a <a href="#">link</a>
and a <code>reference</code>
and a <code class="grouped"><span>group</span><span>of</span><span>references</span></code>
</p>
<hr />
<p>With <strong>strong</strong> and <em>emphasized</em> text.</p>
</article>
<article>
<h1>Lists</h1>
<ul>
<li>Here's a list</li>
<li>of unordered things</li>
</ul>
</article>
<article>
<h1>Forms</h1>
<form>
<label for="text">Text Box:</label>
<input type="text" id="text" />
<label for="textarea">Text Area:</label>
<textarea id="textarea"></textarea>
<label>
<input type="checkbox" value="Check" />
Check
</label>
<label>
<input type="radio" name="radio" value="Check" />
Radio
</label>
<label>
<input type="radio" name="radio" value="Check" />
Radio B
</label>
<button>Secondary Button</button>
<button class="primary">Primary Button</button>
<input type="submit" value="Submit"/>
</form>
</article>
<article>
<h1>Code Blocks</h1>
<pre><code class="kotlin">
fun main() {
println("Hello Wald!")
}
</code></pre>
</article>
<nav>
<ul>
<li>
<a href="#test">Navigation</a>
</li>
<li>
<a href="javascript:void(0)">Links</a>
</li>
</ul>
</nav>
</section>
<section class="featured content-break">
<h1>Featured Sections</h1>
<p>Can be used to highlight primary actions.</p>
<a href="#" class="button">No!</a>
<button class="primary">Yes!</button>
</section>
<footer class="ink">
<div class="signature">
<a href="https://InkApplications.com">Ink Applications</a>
</div>
</footer>
</body>
</html>