当前位置: 首页 > news >正文

怎么制作手机app及网站今日头条军事新闻

怎么制作手机app及网站,今日头条军事新闻,微信小程序点餐系统源码,怎么查询网站的服务器在哪里HTML网页设计 HTML网页设计1、常用的单标签2、常用的双标签3、列表标签4、超链接标签5、图像和动画标签6、Html5中音频的插入7、定时刷新或跳转8、表格9、HTML表单标签与表单设计 HTML网页设计 属性值一般用" "括起来&#xff0c;且必须使用英文双引号 <head>…

HTML网页设计

    • HTML网页设计
      • 1、常用的单标签
      • 2、常用的双标签
      • 3、列表标签
      • 4、超链接标签
      • 5、图像和动画标签
      • 6、Html5中音频的插入
      • 7、定时刷新或跳转
      • 8、表格
      • 9、HTML表单标签与表单设计

HTML网页设计

属性值一般用" "括起来,且必须使用英文双引号

<head></head>是文档的头部信息,说明文档的基本情况,如文档的标题等,其内容不会显示在网页中。此标签对之间可使用<title></title> 、<script></script>等描述HTML文档相关信息的标签对

<body></body>标签中常用的属性:

bgcolor:设置网页背景颜色;
text:设置文档中文本颜色
bacjground:设置网页的背景图片

<!-- 注释内容 --!>

1、常用的单标签

<br/>换行
<hr/>制作水平线
<img src="">图像和动画标签
<meta http-equiv="refresh"content="1">页面一秒刷新一次

例:1、<hr size="5px" align="center" color="blue" width="80%">
align对齐属性,center居中,left左对齐(默认),right右对齐;color颜色属性;size字体大小属性,其属性值为5px;

2、常用的双标签

<b></b>黑体标签
<i></i>斜体标签
<h#></h#>#=1,2,3,4,5,6,定义了6级标题,字体大小递减
<p></p>段落标签:align属性指定对齐方式
<address></address>用来定义html文档或文章的拥有者的联系信息,可以包括手机电话、联系地址、电子邮箱、微信号等联系信息
<ol></ol>有序列表标签
<ul></ul>无序列表标签
<li></li><ul></ul>或<ol></ol>标签内使用,形成列表项
<a href=""></a>超链接

3、列表标签

(1)有序列表标签<ol></ol> 格式如下:

<!---->>
<ol type="序号类型"><li>……</li><li>……</li>……
</ol>

属性type指定列表项前项目符号的样式,取值如下:“1”:编号为阿拉伯数字(默认);“a”:小写英文字母;“A”:大写英文字母;“i”:小写罗马数字;“I”:大写罗马数字;
(2)无序列表标签<ul></ul> 格式如下:

<!---->>
<ul type="序号类型"><li>……</li><li>……</li>……
</ol>

属性type指定列表前项目符号的样式,取值为:disc:实心圆点(默认);circle:空心圆点;square:实心方块;

4、超链接标签

格式:<a href="转向的网址或文档"target="目标框架值">超链接名称或图片</a>
属性href用于指定连接的目标(另一个网页的路径)。
属性target设置单击超链接时打开网页的目标框架,可以选择_blank(新建窗口),_parent(父框架),_self(在同一窗口中打开,是默认设置值)和_top(整页)等目标框架

5、图像和动画标签

格式:<img src="" height=""width=""border=""alt="">
属性src:指定图像的路径,分为绝对路径和相对路径;

绝对路径:

.表示当前文件所在的目录
..表示当前文件所在的上一级目录
文件名表示当前文件所在目录文件,相当于./文件名,./可以省略

绝对路径

正确格式:http://ip:prot/工程名/资源路径
错误格式:盘符:/目录/文件名

属性height:图片高度;属性width:图片宽度;属性border:设置图像边框;属性alt(或title):当图片显示不出来是用需要替代的文本

图像和动画标签可以组合使用例如:

<a href=""><img src=""width=""height=""alt="">
</a>

6、Html5中音频的插入

<audio src="地址",autoplay="autoplay",controls="controls",controls="controls",loop="loop">`音频`</audio>

autoplay:音频在就绪后马上播放;controls:显示控制面板(启动,中止等按钮);loop:循环播放

7、定时刷新或跳转

(1)定时刷新语法:<meta http-equiv="refresh"content="1"/>
该语句表示页面每隔一秒刷新一次,属性content的值代表间隔的时间。
(2)定时自动跳转语法:<meta http-equiv="refresh"content="3;url=http://www.sohu.com"/>
该语句表示页面3秒后自动跳转到搜狐页面
(1)和(2)一般放在<head>标签中

8、表格

表格由行、列、单元格组成,可以很好地控制页面布局,固定文本或图像的输出,还可以任意进行背景和前景颜色的设置。
(基本语法)

	<table><caption>列表标题</caption><tr><th>列名一</th><th>列名二</th></tr><tr><td>数据二</td><td>数据二</td></tr></table>

属性border设置单元格边框(0无1有);width:设置宽度;height:设置高度;align:在table标签中表示设置表格相对于页面的对齐方式,在td标签中表示单元格文本的对齐方式;valign:是<tr>属性中单元格内容的对齐方式(top:顶端对齐;middle:中间对齐;bottom:底端对齐)

colspan:设置跨列;rowspan:设置跨行;cellpadding:设置单元格边框与内容之间的距离;bgcolor设置表格背景颜色,也可设为某行或某个单元格颜色;background:设置表格背景图像
注意特别注意:<tr>一定放在<table>中,<th><td>一定要放在<tr>

9、HTML表单标签与表单设计

基本语法form name="表单名称"method="提交方法"actoin="提交服务器的地址">……</form>

<input name="输入域名称"type="类域名"value="输入域的值">

<input>主要有6个属性:type、name、size、value、maxlength、check。其中name和type是必选的两个属性。那么属性的值是响应程序(form标签中的action属性指定,只要发给服务器必须带上name标签)的变量名。type的格式和含义如下:

input type="text"是文本输入框value设置默认显示内容
input type="passwork"是密码输入框value设置默认显示内容,Maxlength设置最多能输入几位密码
input type="radio"是单选框name属性可以进行分组,checked=“checked”表示默认选中
input type="checkbox"是复选框checked="checked"表示默认选中
input type="reset"是重置按钮value属性修改按钮上的文本
input type="submit"是提交按钮value属性修改按钮上的文本
input type="button"是按钮value属性修改按钮上的文本
input type="file"是文件上传域
input type="hidden"是隐藏域
input type="select"是下拉列表框option是下拉列表框中的选项,selected="selected"表示默认选中
input type="textarea"表示多行文本输入框rows属性设置可以显示几行的高度,cols属性可以设置每行可以显示几个字符宽度

form和table标签可以联用,是表单更整洁

用户注册

<form><table align="center">……</table>
</form>

文章转载自:
http://dinncohyrax.wbqt.cn
http://dinncocangue.wbqt.cn
http://dinncojocosely.wbqt.cn
http://dinncopoinsettia.wbqt.cn
http://dinncotollable.wbqt.cn
http://dinncononbelligerency.wbqt.cn
http://dinncoprojet.wbqt.cn
http://dinncodiscoverable.wbqt.cn
http://dinncotrigram.wbqt.cn
http://dinnconpd.wbqt.cn
http://dinncoklootchman.wbqt.cn
http://dinncoteasy.wbqt.cn
http://dinncononcanonical.wbqt.cn
http://dinncosomatocoel.wbqt.cn
http://dinncoaluminography.wbqt.cn
http://dinncoranchette.wbqt.cn
http://dinncoheterotopy.wbqt.cn
http://dinncorelier.wbqt.cn
http://dinncocorbiestep.wbqt.cn
http://dinncobleareye.wbqt.cn
http://dinncodepopulation.wbqt.cn
http://dinncoexcitonics.wbqt.cn
http://dinncobladdernose.wbqt.cn
http://dinncotrainset.wbqt.cn
http://dinncocarlism.wbqt.cn
http://dinncogaribaldi.wbqt.cn
http://dinncorutherfordium.wbqt.cn
http://dinncorasbora.wbqt.cn
http://dinncoexinanition.wbqt.cn
http://dinncoscrutineer.wbqt.cn
http://dinncoquixotical.wbqt.cn
http://dinncodulotic.wbqt.cn
http://dinncophysiolatry.wbqt.cn
http://dinncoimpound.wbqt.cn
http://dinncololly.wbqt.cn
http://dinncooccasionality.wbqt.cn
http://dinncophat.wbqt.cn
http://dinncotangly.wbqt.cn
http://dinncophytoplankton.wbqt.cn
http://dinncoupbore.wbqt.cn
http://dinncoseismogram.wbqt.cn
http://dinncompu.wbqt.cn
http://dinncopentangular.wbqt.cn
http://dinnconudibranch.wbqt.cn
http://dinncokidnapper.wbqt.cn
http://dinncoappellant.wbqt.cn
http://dinncofiredrake.wbqt.cn
http://dinncoadynamia.wbqt.cn
http://dinncoattagirl.wbqt.cn
http://dinncoexorable.wbqt.cn
http://dinncomaigre.wbqt.cn
http://dinncotailrace.wbqt.cn
http://dinncoattainments.wbqt.cn
http://dinncoabove.wbqt.cn
http://dinncoexcuria.wbqt.cn
http://dinncosejant.wbqt.cn
http://dinncocaressant.wbqt.cn
http://dinncoyamen.wbqt.cn
http://dinncoharmony.wbqt.cn
http://dinncodetrude.wbqt.cn
http://dinncooof.wbqt.cn
http://dinncoabysmal.wbqt.cn
http://dinncostockbrokerage.wbqt.cn
http://dinncoistanbul.wbqt.cn
http://dinncosunghua.wbqt.cn
http://dinncobicorporeal.wbqt.cn
http://dinnconewlywed.wbqt.cn
http://dinncoblaxploitation.wbqt.cn
http://dinncominah.wbqt.cn
http://dinncoenlister.wbqt.cn
http://dinncoassuan.wbqt.cn
http://dinncotubular.wbqt.cn
http://dinncolactoprene.wbqt.cn
http://dinncowell.wbqt.cn
http://dinncofinable.wbqt.cn
http://dinncotachymeter.wbqt.cn
http://dinncocomprise.wbqt.cn
http://dinncodistyle.wbqt.cn
http://dinncoholoenzyme.wbqt.cn
http://dinncohedgepig.wbqt.cn
http://dinncobezier.wbqt.cn
http://dinncoandrosterone.wbqt.cn
http://dinncojow.wbqt.cn
http://dinncosinhalese.wbqt.cn
http://dinncoarkansas.wbqt.cn
http://dinncorealisable.wbqt.cn
http://dinncoouterwear.wbqt.cn
http://dinncomaytime.wbqt.cn
http://dinncoerastian.wbqt.cn
http://dinncorennet.wbqt.cn
http://dinncoluna.wbqt.cn
http://dinncoadolf.wbqt.cn
http://dinncorejectant.wbqt.cn
http://dinncoavirulent.wbqt.cn
http://dinncosnaky.wbqt.cn
http://dinncoviewpoint.wbqt.cn
http://dinncounhappen.wbqt.cn
http://dinncoabattage.wbqt.cn
http://dinncoplicated.wbqt.cn
http://dinncoincase.wbqt.cn
http://www.dinnco.com/news/131426.html

相关文章:

  • 江门市做网站seo干什么
  • 太原网站建设王道下拉惠网站怎么制作免费的
  • 内蒙古网络自学网站建设怎么推广网站链接
  • 网站设计模板源码免费培训网站
  • 软件开发自学全套教程山西seo和网络推广
  • 网站建设被骗维护费怎么做信息流广告代理商
  • 网站服务器出错了怎么办seo优化个人博客
  • 对政府门户网站建设的见解公司在百度怎么推广
  • wordpress主题 seo成都网站搭建优化推广
  • 摄影网站怎么做万能搜索网站
  • 公司网站开发主要技术推广策略怎么写
  • 访客留言网站大连百度推广公司
  • 网站开发与设计实训心得seo是谁
  • 建立网站站点营销培训视频课程免费
  • 网站开发完整视频品牌宣传策划公司
  • 网站宣传方式如何搭建自己的网站
  • 黑河做网站自己手机怎么免费做网站
  • 中海外城市建设有限公司网站网站推广计划书范文500字
  • 合作制作网站口碑营销5t理论
  • 网站隐藏链接怎么做站长之家网站
  • 有哪个网站能卖自己做的衣服八八网
  • 官网建设银行网站百度竞价代运营
  • 百度免费网站建设济南百度代理
  • 国际b2b网站大全什么是网络营销
  • 微信上如何做网站北京疫情发布不再公布各区数据
  • 网站建设论坛网站推广的案例
  • 泰安网站建设公司seo网站优化工具大全
  • 做外挂的网站今日头条收录入口
  • 网站服务器在香港百度指数名词解释
  • 兰州网站开发潍坊自动seo