📄 htmllib.c
字号:
/* htmllib.c * HTML common library functions for the CGI programs. */#include <stdio.h>#include "htmllib.h"void htmlHeader(char *title) { printf("Content-type: text/html\n\n<HTML><HEAD><TITLE>%s</TITLE></HEAD>", title);}void htmlBody() { printf("<BODY>");}void htmlFooter() { printf("</BODY></HTML>");}void addTitleElement(char *title) { printf("<H1>%s</H1>", title);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -