美文网首页
html学习笔记

html学习笔记

作者: 王平升 | 来源:发表于2016-12-09 19:44 被阅读22次

简介

超文本标记语言,标准通用标记语言下的一个应用。
“超文本”就是指页面内可以包含图片、链接,甚至音乐、程序等非文字元素。
超文本标记语言的结构包括“头”部分(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'

相关文章

  • HTML5学习笔记之表格标签

    HTML5学习笔记之表格标签 其他HTML5相关文章 HTML5学习笔记之HTML5基本介绍 HTML5学习笔记之...

  • HTML5学习笔记之表单标签

    HTML5学习笔记之表单标签 其他HTML5相关文章 HTML5学习笔记之HTML5基本介绍 HTML5学习笔记之...

  • HTML5学习笔记之基础标签

    HTML5学习笔记之基础标签 其他HTML5相关文章 HTML5学习笔记之HTML5基本介绍 HTML5学习笔记之...

  • HTML5学习笔记之音视频标签

    HTML5学习笔记之音视频标签 其他HTML5相关文章 HTML5学习笔记之HTML5基本介绍 HTML5学习笔记...

  • html

    html学习笔记

  • HTML5基本介绍

    HTML5基本介绍 其他HTML5相关文章 HTML5学习笔记之HTML5基本介绍 HTML5学习笔记之基础标签 ...

  • HTML5—HTML学习

    HTML学习感想: 下面大致的记录了一写HTML的学习笔记 什么是HTML? HTML 是HyperText Ma...

  • 初学HTML

    学习笔记(四)初学HTML HTML初步认识 HTML是英语HyperText Markup Language的缩...

  • HTML基础学习笔记

    原 Blog 链接:HTML基础学习笔记 自学 html 基础笔记 Web 前端简单介绍 web 前端包含: pc...

  • cocos2d-html5 学习笔记​

    # cocos2d-html5 学习笔记

网友评论

      本文标题:html学习笔记

      本文链接:https://www.haomeiwen.com/subject/rihymttx.html