-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
96 lines (93 loc) · 3.04 KB
/
help.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
<!DOCTYPE html>
<html>
<head>
<title>Help</title>
<link
rel="stylesheet"
type="text/css"
href="./bootstrap-4.5.2/css/bootstrap.min.css"
/>
</head>
<body style="background-color: #1a1a1a; color: #ffffff">
<div
id="titlediv"
class="container-fluid d-flex justify-content-between mt-2"
>
<div class="d-flex align-items-center">
<img src="./webide.svg" width="45px" height="45px" class="mr-2" />
<h3 class="p-0 m-0">WEBIDE</h3>
<p class="m-0 ml-2 text-primary">
Where there is no ease of access to your code
</p>
</div>
</div>
<div class="m-5"></div>
<nav class="navbar bg-dark">
<div class="container-fluid">
<ul class="nav navbar-nav"></ul>
</div>
</nav>
<div class="m-5"></div>
<ul class="ml-2 help-tips">
<li>
<p class="help-tips">
This page is browser based so all the features must be on the browser
</p>
</li>
<div class="m-3"></div>
<li>
<p class="help-tips">
The browser is incompatible with Internet Explorer and also on those
browsers where Web Storage API are not useful
</p>
</li>
<div class="m-3"></div>
<li>
<p class="help-tips m-0">
<img src="delete-sweep.svg" width="25px" height="25px" /> means that
to clear the whole screen and also delete the saved data
</p>
</li>
<div class="m-3"></div>
<li>
<img src="runbtn.svg" width="25px" height="25px" /> means to run the
code
</li>
<div class="m-3"></div>
<li>
<img src="./downloadicon.svg" width="25px" height="25px" /> means that
you can download the code in 3 files
</li>
<div class="m-3"></div>
<li>
<img src="./save.svg" width="25px" height="25px" /> means to save the
code in your browser
</li>
<div class="m-3"></div>
<li>When you change the font the page will reload</li>
</ul>
<h2 class="text-center text-primary m-0">!!!!!! Happy Coding !!!!!!</h2>
<div class="m-2"></div>
<h2 class="text-center text-success">Version 1.0.0 features</h2>
<ol
class="text-center text-warning font-weight-bold"
style="list-style-type: none"
>
<li class="mb-3">Lovely Dark Mode :)</li>
<li class="mb-3">Syntax highlighting {Press Ctrl+Space} and enjoy</li>
<li class="mb-3">
Browser based code saving[Does not work if you have an old browser or
you are using it in incognito mode]
</li>
<li class="mb-3">Code Autocompletion</li>
<li class="mb-3">Saving using Ctrl+S as well as save button</li>
<li class="mb-3">Ability to download the code</li>
<li class="mb-3">More than 35+ themes</li>
<li class="mb-3">Choice to select 7 fonts</li>
<li class="mb-3">
When you are not in incognito mode you can save the settings
</li>
</ol>
<link rel="stylesheet" type="text/css" href="./responsivescreens.css" />
</body>
</html>