add cgi-bin and html directory

This commit is contained in:
flykhan 2023-10-23 21:39:21 +08:00
parent b2a828d82e
commit 71dd8f0f50
2 changed files with 20 additions and 0 deletions

6
cgi-bin/login.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main()
{
return 0;
}

14
html/index.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>