forked from bachors/CodingDong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (75 loc) · 3.3 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- Mobile viewport optimized -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Title -->
<title>CodingDong</title>
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="CodingDong" />
<meta property="og:description" content="Free code editor, web builder, code execute web based." />
<meta property="og:image" content="http://ibacor.com/bcr_asset/images/media/37407c7e5e6b35f44f58fd7956cad13b.jpg" />
<meta property="og:url" content="http://ibacor.com/codingdong" />
<meta property="og:site_name" content="iBacor" />
<!-- CSS -->
<link href='//fonts.googleapis.com/css?family=VT323:400' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="css/style.css"/>
<style>
.tiped {
margin: 20px;
height: auto;
min-height: 510px;
font-family: VT323;
font-size: 2em
}
.element {
background: #fff;
color: #3399ff
}
</style>
</head>
<body>
<ul class="header">
<li><a class="active" href="index.html">CodingDong <sup>BETA</sup></a></li>
<li><a href="frontend.html">Frontend</a></li>
<li><a href="backend.html">Backend</a></li>
<li><a href="database.html">Database</a></li>
<li class="katuhu">
<input type="text" id="stack_title" title="Keyword" placeholder="Stackoverflow"/>
<select class="stack_sort">
<option value="activity">Activity</option>
<option value="votes">Votes</option>
<option value="creation">Creation</option>
<option value="relevance">Relevance</option>
</select>
<div id="stack_output">Search a question and the results will display here.</div>
</li>
</ul>
<div id="konten">
<div class="tiped"><span class="element"></span></div>
</div>
<footer>Developed by <a href="http://ibacor.com" target="_BLANK">iBacor</a>. Build with <a href="https://codemirror.net/" target="_BLANK">CodeMirror</a>. Made with ♥ in Garut, Indonesia. </footer>
<!-- Javascript -->
<script type="text/javascript" src="js/jquery-2.2.0.min.js"></script>
<script type="text/javascript" src="js/ibacor_stack.js"></script>
<script type="text/javascript" src="js/typed.js"></script>
<script>
$(function(){
$(".element").typed({
strings: ['<?php<br> $CodingDong = "This is a code editor, code execute and web builder";<br> $CodingDong .= "Write css code, html, javascript, PHP, sql and run the code";<br> $CodingDong .= "Supports cdn sourche";<br> $CodingDong .= "You can try all the code directly on the website";<br> $CodingDong .= "Try it out!";<br> echo $CodingDong;<br>?>'],
typeSpeed: 0
});
});
</script>
<!-- Fork me on GitHub -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.1.1/gh-fork-ribbon.min.css" />
<div class="github-fork-ribbon-wrapper right-bottom">
<div class="github-fork-ribbon">
<a href="https://github.com/bachors/CodingDong">Fork me on GitHub</a>
</div>
</div>
</body>
</html>