-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (71 loc) · 2.87 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Q.O.F - Quotes on Front-end</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/2.0.1/normalize.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Comfortaa:700,300">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/styles/index.css">
</head>
<body>
<div id="page">
<header class="the-header">
<div class="unit-inner">
<div class="group-logo">
<div class="bd">
<a href="/" class="logo">Q.O.F</a>
<p class="catch">A Collection of Quotes for Front-end Developers</p>
</div>
</div>
</div>
</header>
<div class="the-body">
<div class="form-send">
<div class="unit-inner">
<div class="btn-center"><button id="toggle-form" class="btn btn-new">新規登録 <i class="icon icon-chevron-right"></i></button></div>
<div id="send-quote" class="animate is-close">
<textarea id="quote-text" name="quote-text" rows="4" placeholder="クオートを入力"></textarea>
<input id="author" type="text" placeholder="誰のクオートかを入力">
<input id="source" type="text" placeholder="参照元URLを入力(書籍の場合はAmazonなどのURL)">
<div class="btn-center">
<!-- <button type="submit" class="btn">保存</button> -->
<button id="form-send-mock" class="btn btn-save">保存</button>
</div>
</div>
</div>
</div>
<div class="list-quotes">
<div class="unit-inner">
<ul id="quotes">
</ul>
</div>
</div>
<!-- // .the-body --></div>
<footer class="the-footer">
<div class="unit-inner">
<div class="about">
<div class="bd">
<h4>About</h4>
<p>
Q.O.Fはフロントエンドにまつわるクオートを集積するウェブアプリケーションです。<br>
このアプリケーションは<strong>テストしやすいJavaScript</strong>を書くためのデモアプリです。
</p>
<p>
<a href="https://github.com/studiomohawk/QOF" class="link-external"><i class="icon icon-github"></i> <strong>Fork this on GitHub</strong></a>
</p>
</div>
</div>
<p class="madeintokyo">
Build by Yuya Saito. <a href="https://twitter.com/cssradar" rel="me" title="Twitter@cssradar">@cssradar</a><br>
Made Proudly in Tokyo.
</p>
</div>
</footer>
<!-- // #page --></div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="app/app.js"></script>
</body>
</html>