-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (30 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>算命摸骨,天下无双</title>
<script type="text/javascript" src="./js/fortunetell.js"></script>
<link rel="stylesheet" type="text/css" href="./css/fortunetell.css">
</head>
<body>
<div>
<img src="./img/trigram.jpeg" alt="">
<div id="fortunetellDiv">
<select id="fortunetellSelect" onchange="fortunetellSelected(this.options[this.options.selectedIndex].value)">
<option value="day">算哪天出生</option>
<option value="surname">算姓氏</option>
<option value="number">算0-9中的数字</option>
</select>
</div>
<br/>
<a href="https://github.com/cp110/Fortunetell" target="_blank">Copyright © 2020/12/10 by chenpeng</a>
<footer>
<script type="text/javascript">document.write(unescape("%3Cspan id='cnzz_stat_icon_1279517421'%3E%3C/span%3E%3Cscript src='https://s9.cnzz.com/z_stat.php%3Fid%3D1279517421%26online%3D1%26show%3Dline' type='text/javascript'%3E%3C/script%3E"));</script>
</footer>
</div>
<script type="text/javascript">
fortunetellDay();
</script>
</body>
</html>