-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (90 loc) · 3.31 KB
/
index.html
File metadata and controls
90 lines (90 loc) · 3.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>LanGong Support</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
<style>
.down{
text-align: center;
}
.cp{
width: 100%;;
position: fixed;
bottom: 0;
}
</style>
</head>
<body>
<script type="text/javascript">
function openmain(){
window.open ("https://langong-dev.github.io/", "LanGong", "fullscreen=1,height=500, width=700, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no");
}
function openmain_ch(){
window.open ("https://langong-dev.github.io/ch/", "LanGong", "fullscreen=1,height=500, width=700, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no");
}
function openblog() {
window.open ("https://langonginc.github.io/", "Blog", "fullscreen=1,height=500, width=700, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no");
}
function opengithub() {
window.open ("https://github.com/langong-dev/", "GitHub", "fullscreen=1,height=500, width=700, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no");
}
function opentalk() {
window.open ("talk.html", "Support", "fullscreen=1,height=500, width=700, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no");
}
</script>
<center>
<h1>LanGong</h1>
<img src="logo.png" width="48%">
<hr width="95%">
</center>
<div class="down">
<table align="center">
<tr><td>
<center>
<h4>English</h4>
<table>
<tr>
<td><button onclick="openmain()"> > LanGong Home </button></td>
</tr><tr>
<td><button onclick="openblog()"> > LanGong Blog </button></td>
</tr><!--<tr>
<td><button onclick="opentalk()"> > FeedBack (Beta) </button></td>
</tr>-->
</table>
</center>
</td><td>
<center>
<h4>简体中文</h4>
<table>
<tr>
<td><button onclick="openmain_ch()"> > LanGong 首页 </button></td>
</tr><tr>
<td><button onclick="openblog()"> > LanGong 博客 </button></td>
</tr><!--<tr>
<td><button onclick="opentalk()"> > 报告错误 (测试) </button></td>
</tr>-->
</table>
</center>
</td><td> </td><td>
<center>
<h3>We are LanGong</h3>
<span>LanGong Develope Team.</span><br>
<span>We like programming and we believe "<b>open source</b>" is a good thing.</span><br>
<span>We share open source programmes on <a href="" onclick="opengithub()">GitHub</a>.</span>
</center>
</td></tr>
</table>
<br>
<div class="cp">
<center>
<hr width=95%>
<span>Made by <b>LanGongINC</b> • <b>LanGongOnline</b> • <b>LanGongDEV</b></span>
<br>
<span>© 2020 <b>LanGongINC</b></span>
</center>
<br>
</div>
</div>
</body>
</html>