-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (51 loc) · 2.76 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
<!DOCTYPE html>
<html>
<head>
<title>Poly UI Kit</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/application.css">
</head>
<body>
<div class="container">
<header role="banner">
<a class="site-logo" href="/">
<b class="srt">Poly - UI Toolkit</b>
</a>
<nav class="navbar" role="navigation">
<span class="icn-toggle">
<b class="srt">Toggle</b>
</span>
<ul class="nav">
<li class="nav__item"><a href="#">Typography</a></li>
<li class="nav__item"><a href="#">Buttons</a></li>
<li class="nav__item"><a href="#">Forms</a></li>
<li class="nav__item"><a href="#">Images</a></li>
<li class="nav__item"><a href="#">Grid</a></li>
<li class="nav__item--current"><a href="#">Navigation</a></li>
</ul>
</nav>
</header>
<h4>Typography</h4>
<h1 class="headline-primary">Take a look at this amazing headline</h1>
<h2 class="headline-secondary">Don't forget about the subtitle</h2>
<p>This is a typical paragraph for the UI Kit. <a href="#">Here is what a link might look like</a>. The typical font family for this kit is Helvetica Neue. This kit is intended for clean and refreshing web layouts. No jazz hands here, just the essentials to make dreams come true, with minimal clean web design. The kit comes fully equipped with everything from full responsive media styling to buttons to form fields. <em>I enjoy using italics as well from time to time</em>. Fell free to create the most amazing designs ever with this kit. I truly hope you enjoy not only the kit but this amazing paragraph as well. :)</p>
<blockquote>You know what really gets me going? A really nice set of block quotes. That's right, block quotes that say, "Hey, I'm an article you want to read and nurture."</blockquote>
<h4>Buttons</h4>
<a class="btn--default" href="#">Button Default</a>
<a class="btn--success" href="#">Button Success</a>
<a class="btn--error" href="#">Button Error</a>
<button class="btn--warning">Button Warning</button>
<button class="btn--info">Button Info</button>
<h4>Form Elements</h4>
<form>
<label for="name">Name:</label>
<input type="text" id="name" placeholder="Name">
<label for="email">Email:</label>
<input type="email" id="email" placeholder="email@website.com">
<label for="msg">Message:</label>
<textarea class="form__input" id="msg" placeholder="Message..." rows="6"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>