html学习笔记

2016-12-09  本文已影响22人  王平升

简介

超文本标记语言,标准通用标记语言下的一个应用。
“超文本”就是指页面内可以包含图片、链接,甚至音乐、程序等非文字元素。
超文本标记语言的结构包括“头”部分(Head)、和“主体”部分(Body),其中“头”部提供关于网页的信息,“主体”部分提供网页的具体内容。我们所看到的页面,右键选择“查看源文件”就可以展现出来HTML代码。
网页的本质就是超级文本标记语言,通过结合使用其他的Web技术,可以创造出功能强大的网页。下面我们就用html基础知识来实现列表、表格和考试页面。

列表

表格

考试页面

总结

以前就学过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'
上一篇 下一篇

猜你喜欢

热点阅读