简介
超文本标记语言,标准通用标记语言下的一个应用。
“超文本”就是指页面内可以包含图片、链接,甚至音乐、程序等非文字元素。
超文本标记语言的结构包括“头”部分(Head)、和“主体”部分(Body),其中“头”部提供关于网页的信息,“主体”部分提供网页的具体内容。我们所看到的页面,右键选择“查看源文件”就可以展现出来HTML代码。
网页的本质就是超级文本标记语言,通过结合使用其他的Web技术,可以创造出功能强大的网页。下面我们就用html基础知识来实现列表、表格和考试页面。
列表
-
相关知识
无序列表:ul 使用黑点进行标记
有序列表:ol 使用数字进行标记
列表项: li
实现方块:
<ul type="square"></ul>
设置字符集显示中文: 在
<head>
中用<meta charset="UTF-8">
默认为黑色方块,不需要特殊设置分为三层实现,首先实现最外层的无序javascript、java,然后实现第二层的有序章节显示,最后实现第三层列表效果
-
代码
具体代码请在Github中查看
-
效果图
表格
-
相关知识
基本标签: 表格
<table>
行<tr>
列<td>
表头<th>
页头<thead>
主体<tbody>
页脚<tfoot>
标题<caption>
边框设置:
<table border="1"> </table>
跨行:
rowspan
跨列:colspan
文字居中:
align="center"
可在thead、tbody和tfoot中设置首先实现head部分,设置表名,再实现body部分,再实现foot部分
-
代码
具体代码请在Github中查看
-
效果图
考试页面
-
相关知识
基本标签:标题
<h1>-<h6>
换行<br>
输入<input>
表单<form>
块分割<div>
行内分割<span>
文本框和选项输入框的设置:文本框text、单选radio、多选checkbox,在
<input type=text></input>
中设置按照顺序一步一步实现试卷名、考试基本信息、填空题、选择题、多选题、判断题、简答题以及计算分数按钮。
-
代码
具体代码请在Github中查看
-
效果图
总结
以前就学过html的基础知识,但是没有怎么实践,今天重新回复知识再加上实践操作,已经基本掌握了html的基础,再以后应用中多加熟练,但是在将代码上传到github时又出错了,我先记录下来,然后再继续分析解决:
wangpingsheng% pwd
/Users/pswang/twjt/html
wangpingsheng% ls
exam.html list.html table.html
wangpingsheng% git init
Initialized empty Git repository in /Users/pswang/twjt/html/.git/
wangpingsheng% git checkout -b branch
Switched to a new branch 'branch'
wangpingsheng% git add exam.html list.html table.html
wangpingsheng% git commit -m 'first commit'
[branch (root-commit) 4a8a5c2] first commit
Committer: pswang <pswang@wangpingsheng.lan>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly. Run the
following command and follow the instructions in your editor to edit
your configuration file:
git config --global --edit
After doing this, you may fix the identity used for this commit with:
git commit --amend --reset-author
3 files changed, 203 insertions(+)
create mode 100644 exam.html
create mode 100644 list.html
create mode 100644 table.html
wangpingsheng% git status
On branch branch
nothing to commit, working directory clean
wangpingsheng% git branch
* branch
wangpingsheng% git remote add origin git@github.com:ApplePP/html.git
wangpingsheng% git push -u origin master
error: src refspec master does not match any.
error: failed to push some refs to 'git@github.com:ApplePP/html.git'
网友评论