forked from makesmatheasy/makesmatheasy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helpjavascript.html
106 lines (100 loc) · 4.23 KB
/
helpjavascript.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Makes Math Easy - Enable JavaScript</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
@font-face {
font-family: mainfont;
src: url(../fonts/Product_Sans_Regular.ttf) format('truetype');
}
@font-face {
font-family: mainfontbold;
src: url(../fonts/Product_Sans_Bold.ttf) format('truetype');
}
h2,p,h4{
font-family: mainfontbold;
}
li{
font-family: mainfont;
}
body{
background:#232a36;
color:white;
padding:2%;
}
.icon{
filter:invert(100%);
}
</style>
</head>
<body>
<div class="container" style="padding:2% 2%">
<h2>Welcome,Thanks for Using Makes Math Easy</h2>
<p>The app does not work if JavaScript is disabled in your browser. Here is a step-by-step guide for enabling it on your browser.</p>
<div>
<h4><img src="images/chrome.png" alt="Google Chrome Logo"> Google Chrome</h4>
<ul>
<li>Open Chrome</li>
<li>In the top right corner,click on <img class="icon" src="images/More options.png" alt="More Options"> and go to Settings.</li>
<li>Click on <img class="icon" src="images/shield.png" alt="Privacy and security logo"> Privacy and security.</li>
<li>Go to Site Settings.</li>
<li>Click on JavaScript and <img class="icon" src="images/toggle.png" alt="Toggle icon"> turn on Allowed(recommended).</li>
</ul>
</div>
<div>
<h4><img src="images/internet-explorer.png" alt="Internet Explorer logo"> Internet Explorer</h4>
<ul>
<li>Select Tools Menu.</li>
<li>Go to Internet Options.</li>
<li>Select the Security tab.</li>
<li>Click on the "Custom Level Button..."</li>
<li>Scroll down and change the Active Scripting setting by clicking on "Enable".</li>
<li>Confirm the change by clicking on "Yes".</li>
<li>Press "OK" to close Internet Options.</li>
</ul>
</div>
<div>
<h4><img src="images/firefox.png" alt="Firefox logo"> Mozilla Firefox</h4>
<ul>
<li>In the address bar type "about:config" and press Enter.</li>
<li>Click on "Accept the Risk and Continue".</li>
<li>In the <img class="icon" src="images/search.png" alt="search icon"> search bar search for "javascript.enabled".</li>
<li>Right Click and select "Toggle" or change "false" to "true".</li>
<li>Refresh the page. </li>
</ul>
</div>
<div>
<h4><img src="images/edge.png" alt="Microsoft Edge logo"> Microsoft Edge</h4>
<ul>
<li>Click on the <img class="icon" src="images/menu.png" alt="Menu icon"> more button on the top right corner and go to Settings.</li>
<li>Search for JavaScript.</li>
<li>Click on the search result and turn on <img class="icon" src="images/toggle.png" alt="Toggle icon"> Allowed(recommended).</li>
<li>JavaScript is enabled.</li>
</ul>
</div>
<div>
<h4><img src="images/opera.png" alt="Opera logo"> Opera</h4>
<ul>
<li>Open the "Easy Setup" menu.</li>
<li>Scroll to the very bottom and click on <img class="icon" src="images/settings.png" alt="Settings icon"> "Go to Browser Settings".</li>
<li>Click on Site Settings or <img class="icon" src="images/search.png" alt="Search icon"> search it in the search bar.</li>
<li>Enable JavaScript by clicking on it and turn on <img class="icon" src="images/toggle.png" alt="Toggle icon"> Allowed(recommended).</li>
</ul>
</div>
<div>
<h4><img src="images/safari.png" alt="Safari logo"> Safari</h4>
<ul>
<li>Go to Safari Menu and select "Preferences..." </li>
<li>Select the "Security tab".</li>
<li>In the "Web Content" section mark the "Enable JavaScript" checkbox <img class="icon" src="images/check.png" alt="Check icon">.</li>
<li>JavaScript is enabled.</li>
</ul>
</div>
</div>
</body>
</html>