-
Notifications
You must be signed in to change notification settings - Fork 1
/
faq.html
executable file
·70 lines (63 loc) · 2.46 KB
/
faq.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Faq</title>
<meta name="theme-color" content="#3f51b5">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="mdl-layout__container">
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">FAQ</span>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Menu</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="index.html">Home</a>
<a class="mdl-navigation__link" href="options.html">Options<span class="sup-style red">Alpha</span></a>
<a class="mdl-navigation__link" href="faq.html">Faq</a>
<a class="mdl-navigation__link" href="about.html">About</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--12-col mdl-card mdl-shadow--2dp">
<div class="mdl-card__title mdl-card--border">
<h2 class="mdl-card__title-text">Frequently Asked Questions</h2>
</div>
<div class="mdl-card__supporting-text">
<h5>Autocomplete</h5>
<p>You can use Autocomplete by Hotkey: Ctrl + Space</p>
<h5>CSS Linting</h5>
<p>CSS Linting are included, and work out of the box. This feature help you add styles without mistakes</p>
<h5>Check on Brackets</h5>
<p>Support for auto close brackets and brackets matching (open - close)</p>
<h5>Cloud saves</h5>
<p>Need Login in browser, to start use this feature, please put only short styles</p>
<h5>Cloud show/clear all data</h5>
<p>In menu dropdown there is few actions for that</p>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
<div id="toastLog" class="mdl-js-snackbar mdl-snackbar">
<div class="mdl-snackbar__text"></div>
<button class="mdl-snackbar__action" type="button"></button>
</div>
<div id="progressNoEnd" class="mdl-progress mdl-js-progress mdl-progress--indeterminate"></div>
<script src="https://www.gstatic.com/firebasejs/4.2.0/firebase.js"></script>
<script src="js/vendor/codemirror.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>