test/index.html
2020-10-25 16:11:41 +08:00

20 lines
302 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Git Demo</title>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
</head>
<body>
<script>
function plus (a, b) {
return a+b;
}
function divide(a, b) {
return a/b;
}
</script>
</body>
</html>