-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
81 lines (77 loc) · 2.7 KB
/
about.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
<!doctype=html>
<head>
<title>WebIDE - About</title>
<meta charset="utf-8">
<meta name="description" content="WebIDE is a portable IDE written in html.">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://raw.githubusercontent.com/WebIDEorg/WebIDE-src/master/style.css">
</head>
<body>
<body>
<ul>
<li>
<center>
<img height="100" src="https://raw.githubusercontent.com/josephworks/WebIDE/master/WebIDElogo.png">
</center>
<li>
<a href="/index.html">Home</a>
</li>
<li>
<a href="/plain.html">Plain</a>
</li>
<li>
<a href="/vscode.html">VSCode</a>
</li>
<li>
<a href="/codenvy.html">Codenvy</a>
</li>
<li>
<a class="active" href="/about.html">About</a>
</li>
<li>
<a href="/more.html">More</a>
</li>
</ul>
<div style="margin-left:25%;padding:1px 16px;height:660px;">
<header>
<center>
<h1>WebIDE</h1>
</center>
</header>
<br />
<div class="window">
<div class="terminal">
<p class="command">Terminal> git clone https://github.com/josephworks/WebIDE.git</p>
<p class="log">
Cloning into 'WebIDE'...
<br /> remote: Counting objects: 2764, done.
<br /> remote: Compressing objects: 100% (403/403), done.
<br /> remote: Total 2764 (delta 316), reused 484 (delta 211), pack-reused 2100
<br /> Receiving objects: 100% (2764/2764), 132.34 MiB | 4.57 MiB/s, done.
<br /> Resolving deltas: 100% (967/967), done.
</span>
</p>
<p class="command">Terminal> cp -r WebIDE /var/www</p>
<p class="log">Done!</p>
<p class="command">Terminal> cd /var/www</p>
<p class="log">Done!</p>
<p class="command">Terminal> mv /var/www/html /var/www/oldhtml</p>
<p class="log">Done!</p>
<p class="command">Terminal> mv /var/www/WebIDE /var/www/html</p>
<p class="log">
Done!
<br /> Now go to localhost or 127.0.0.1 in your browser!
<br /> Warn: If you had old files in /var/www/html they would be in /var/www/oldhtml
</p>
<p class="warn">To undo these changes run this command:</p>
<p class="warn">Terminal> rm -rf /var/www/html && mv /var/www/oldhtml /var/www/html</p>
</div>
</div>
<h3>WebIDE is a website written HTML that contains multiple IDE's.</h3>
<footer>
<center>
<h3 class="write">Created by JosephWorks 2018</h3>
</center>
</footer>
</div>
</body>