test/index.html
2020-10-25 15:43:51 +08:00

16 lines
253 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;
}
</script>
</body>
</html>