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

常州网站建设公司如何手机微信app下载

常州网站建设公司如何,手机微信app下载,网站模板下载后怎么使用,网站建设课程设计报告php1.html的特点先看一段简单的html代码htmlhead/headbodyhello world/body /html如果将这段带有这段代码的.html文件拉进浏览器中,就会出现一个页面,内容就是hello world,如下图:由上面的代码,我们可以了解到一些html代码的特点…1.html的特点先看一段简单的html代码htmlhead/headbodyhello world/body /html如果将这段带有这段代码的.html文件拉进浏览器中,就会出现一个页面,内容就是hello world,如下图:由上面的代码,我们可以了解到一些html代码的特点.html代码是通过标签来组织的,比如:html/html这种成对出现的东西叫做标签一个标签通常是成对出现的标签直接可以嵌套.一个表亲的内容可以是其他一个或多个标签,此时标签构成了一个树形结构.如下图:可以在开始标签中,给标签富裕属性,属性相当于键值对,可以有一个或者多个.html 是一个html文件的最顶层标签,也是树根节点head 存放了这个页面的一些属性.body 存放了这个页面包含的内容再如下面这个代码(在vscode中敲!回车就出来了)!DOCTYPE html html langen headmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/title /head bodyhello world /body /html其中表示网页中使用的语言是英语.(lang-language,en-english)表示网页的标题.如下:我们也可以对其修改,如下:title我要上大厂/title2.html中的一些常见标签注释标签body!-- 这是一条注释 --hello world /body注释是不会在网页中出现的,但是如果查看网页源代码是可以看到的.标题标签bodyh1一级标签/h1h2二级标签/h2h3三级标签/h3h4四级标签/h4h5五级标签/h5h6六级标签/h6 /body注意:每个标签都单独占一行,html中写的换行符会被忽略.段落标签bodypLorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat enim corporis ex ad architecto quo dolore in saepe ipsa accusamus nulla sit sint, tempore dicta ullam ab culpa optio Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quaerat mollitia quo at quidem quis! Quae deleniti molestias laudantium at doloribus aperiam a cumque numquam eaque voluptate reprehenderit consequatur, natus minima classlorem/minimaa href classlorem/a/ppLorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat enim corporis ex ad architecto quo dolore in saepe ipsa accusamus nulla sit sint, tempore dicta ullam ab culpa optio Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quaerat mollitia quo at quidem quis! Quae deleniti molestias laudantium at doloribus aperiam a cumque numquam eaque voluptate reprehenderit consequatur, natus minima classlorem/minimaa href classlorem/a/ppLorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat enim corporis ex ad architecto quo dolore in saepe ipsa accusamus nulla sit sint, tempore dicta ullam ab culpa optio Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quaerat mollitia quo at quidem quis! Quae deleniti molestias laudantium at doloribus aperiam a cumque numquam eaque voluptate reprehenderit consequatur, natus minima classlorem/minimaa href classlorem/a/ppLorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat enim corporis ex ad architecto quo dolore in saepe ipsa accusamus nulla sit sint, tempore dicta ullam ab culpa optio Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quaerat mollitia quo at quidem quis! Quae deleniti molestias laudantium at doloribus aperiam a cumque numquam eaque voluptate reprehenderit consequatur, natus minima classlorem/minimaa href classlorem/a/ppLorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat enim corporis ex ad architecto quo dolore in saepe ipsa accusamus nulla sit sint, tempore dicta ullam ab culpa optio Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quaerat mollitia quo at quidem quis! Quae deleniti molestias laudantium at doloribus aperiam a cumque numquam eaque voluptate reprehenderit consequatur, natus minima classlorem/minimaa href classlorem/a/p /body此处我们使用vscode上输入lorem来快速生成一段文本,网页中如下:可以看到每个段楼之间都会自动都隔一行.换行标签我们仍然使用上面的段落来测试(br在第一个逗号后面)bodypLorem ipsum dolor sit amet,brbr consectetur adipisicing elit. Repellat enim corporis ex ad architecto quo dolore in saepe ipsa accusamus nulla sit sint, tempore dicta ullam ab culpa optio Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quaerat mollitia quo at quidem quis! Quae deleniti molestias laudantium at doloribus aperiam a cumque numquam eaque voluptate reprehenderit consequatur, natus minima classlorem/minimaa href classlorem/a/ppLorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat enim corporis ex ad architecto quo dolore in saepe ipsa accusamus nulla sit sint, tempore dicta ullam ab culpa optio Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quaerat mollitia quo at quidem quis! Quae deleniti molestias laudantium at doloribus aperiam a cumque numquam eaque voluptate reprehenderit consequatur, natus minima classlorem/minimaa href classlorem/a/p /body格式化标签bodystrong变粗/strongb变粗/bbrem倾斜/emi倾斜/ibrdel删除线/dels删除线/sbrins下划线/insu下划线/u /body其对应结果如下:图片bodyimg srcd:apple.jpeg /bodyimg里面有一个必填项是srcsrc里面需要填写图片的路径,这个路径可以是绝对路径、相对路径、网络路径.上面这个是绝对路径,显示如下:如果使用相对路径:如果使用网络路径:bodyimg srchttps://img1.baidu.com/it/u3477494620,2150111877fm253fmtautoapp138fJPEG?w500h334 /body上面这几种的展现结果都一样,就不截图展示了.在img中还有几个其他的属性altbodyimg alt这是一个苹果 srchttps://im.baidu.com/it/u3477494620,2150111877fm253fmtautoapp138fJPEG?w500h334 /body此时我们对链接做出一些调整,让其展现不出来图片,此时就会显示alt里面的字符串.如下:titlebodyimg title这是一个苹果 alt这是一个苹果 srchttps://img1.baidu.com/it/u3477494620,2150111877fm253fmtautoapp138fJPEG?w500h334 /body此时将鼠标滑道图片上会显示title里面的字符串(此时链接是完好的)但是没办法将此部分截图,此处不演示图片了.width/heightwidth和height可以单独出现也可以同时出现,若单独出现,会根据单独的这一项对图片进行等比例缩放bodyimg width500px height500px title这是一个苹果 alt这是一个苹果 srchttps://img1.baidu.com/it/u3477494620,2150111877fm253fmtautoapp138fJPEG?w500h334 /bodywidth代表宽度,height代表高度.里面的px是像素(单位)1个像素就是显示器里面的一个小灯泡,我们看到的显示器里面是由很多个小灯泡通过变换颜色显示的,显示器分辨率就是横的小灯泡个数×纵的小灯泡个数.超链接标签bodya hrefhttps://www.sogou.com targetblank搜狗/a /body其中href里面存放链接或者IP地址都可以,target里面放上blank可以让该链接单独成一个页面.如下:如果不加这句,如下:bodya hrefhttps://www.sogou.com搜狗/a /body点击后就会在改页面展示搜狗页面.表格标签table表示整个表格tr表示一行td表示一个单元格th表示表头中的一个单元格bodytabletrth姓名/thth电话/th/trtrtdA/tdtd111/td/trtrtdB/tdtd222/td/trtrtdC/tdtd333/td/tr/table /body如果在table中加上width和height,如下:bodytable width500px height300pxtrth姓名/thth电话/th/trtrtdA/tdtd111/td/trtrtdB/tdtd222/td/trtrtdC/tdtd333/td/tr/table /bodyborder加上表格线bodytable width500px height300px border1pxtrth姓名/thth电话/th/trtrtdA/tdtd111/td/trtrtdB/tdtd222/td/trtrtdC/tdtd333/td/tr/table /bodycellspacing0 将线画实若要居中需要css代码(此处不说明),如下:style是css代码!DOCTYPE html html langen headmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewport contentwidthdevice-width, initial-scale1.0title我要上大厂/titlestyletd{text-align:center;}/style /head bodytable width500px height300px border1px cellspacing0trth姓名/thth电话/th/trtrtdA/tdtd111/td/trtrtdB/tdtd222/td/trtrtdC/tdtd333/td/tr/table /body /html列表标签有序列表 ol无序列表 ul列表项 libodyolliaaa/lilibbb/liliccc/liliddd/li/olulliaaa/lilibbb/liliccc/liliddd/li/ul /body有序列表带1234....无序则不带.表单标签input标签input有多种形态1.单行文本框bodyinput typetext /body2.输入密码的单行文本框bodyinput typepassword /body3.单选框body请选择性别input typeradio男input typeradio女 /body此时是可以选择多个的,如果在每个标签中都加上一个name的话.此时name相同的单选框会互相排斥,也就是多个name相同的单选框只能选择一个.body请选择性别input typeradio namegender男input typeradio namegender女 /body如果在上面的情况下,在其中一个标签中加上checked,此时会默认选择这一项body请选择性别input typeradio namegender男input typeradio namegender checkedchecked女 /body4.多选框body大学生的日常input typecheckbox 吃饭input typecheckbox 学习input typecheckbox 睡觉 /body此时也可以使用checked来默认选中某个/某几个选项5.按钮bodyinput typebutton value按钮 /bodyvalue里面的内容会在按钮上面出现(可有可无)提交按钮需要搭配form完成6.文件选择框bodyinput typefile /body下拉菜单 selectbodyselectoption数学/optionoption语文/optionoption英语/optionoption物理/optionoption化学/option/select /body多行编辑框 textareabodytextarea cols30 rows10/textarea /bodycols表示行,rows表示列这个框的大小还可以进行拖拽控制,此处不演示了.无语意标签 div和span像h1、p、table等这种有具体含义的标签是有意义标签div、span这种无意义标签,是没有一个具体含义的,换言说就是可以在任意场景下使用的标签div和span的区别:div默认独占一行(块级元素)span默认不独占一行(行级元素)
文章转载自:
http://www.morning.rkxqh.cn.gov.cn.rkxqh.cn
http://www.morning.xkyfq.cn.gov.cn.xkyfq.cn
http://www.morning.rnjgh.cn.gov.cn.rnjgh.cn
http://www.morning.jpgfx.cn.gov.cn.jpgfx.cn
http://www.morning.tnzwm.cn.gov.cn.tnzwm.cn
http://www.morning.jrtjc.cn.gov.cn.jrtjc.cn
http://www.morning.xqffq.cn.gov.cn.xqffq.cn
http://www.morning.fglth.cn.gov.cn.fglth.cn
http://www.morning.znrgq.cn.gov.cn.znrgq.cn
http://www.morning.bbgn.cn.gov.cn.bbgn.cn
http://www.morning.qsyyp.cn.gov.cn.qsyyp.cn
http://www.morning.fpzpb.cn.gov.cn.fpzpb.cn
http://www.morning.tpnch.cn.gov.cn.tpnch.cn
http://www.morning.bqmhm.cn.gov.cn.bqmhm.cn
http://www.morning.snyqb.cn.gov.cn.snyqb.cn
http://www.morning.5-73.com.gov.cn.5-73.com
http://www.morning.qpzjh.cn.gov.cn.qpzjh.cn
http://www.morning.ljdjn.cn.gov.cn.ljdjn.cn
http://www.morning.zrjzc.cn.gov.cn.zrjzc.cn
http://www.morning.hxpff.cn.gov.cn.hxpff.cn
http://www.morning.fksrg.cn.gov.cn.fksrg.cn
http://www.morning.bfmrq.cn.gov.cn.bfmrq.cn
http://www.morning.byjwl.cn.gov.cn.byjwl.cn
http://www.morning.pffx.cn.gov.cn.pffx.cn
http://www.morning.ttvtv.cn.gov.cn.ttvtv.cn
http://www.morning.yrbq.cn.gov.cn.yrbq.cn
http://www.morning.tyjp.cn.gov.cn.tyjp.cn
http://www.morning.hcszr.cn.gov.cn.hcszr.cn
http://www.morning.ssjtr.cn.gov.cn.ssjtr.cn
http://www.morning.nnhfz.cn.gov.cn.nnhfz.cn
http://www.morning.mplb.cn.gov.cn.mplb.cn
http://www.morning.rgfx.cn.gov.cn.rgfx.cn
http://www.morning.tkyry.cn.gov.cn.tkyry.cn
http://www.morning.mksny.cn.gov.cn.mksny.cn
http://www.morning.fbnsx.cn.gov.cn.fbnsx.cn
http://www.morning.zgztn.cn.gov.cn.zgztn.cn
http://www.morning.wnnlr.cn.gov.cn.wnnlr.cn
http://www.morning.jfgmx.cn.gov.cn.jfgmx.cn
http://www.morning.rmxgk.cn.gov.cn.rmxgk.cn
http://www.morning.ydmml.cn.gov.cn.ydmml.cn
http://www.morning.yhjrc.cn.gov.cn.yhjrc.cn
http://www.morning.sypby.cn.gov.cn.sypby.cn
http://www.morning.spfh.cn.gov.cn.spfh.cn
http://www.morning.kfrhh.cn.gov.cn.kfrhh.cn
http://www.morning.pzrpz.cn.gov.cn.pzrpz.cn
http://www.morning.twfdm.cn.gov.cn.twfdm.cn
http://www.morning.knqzd.cn.gov.cn.knqzd.cn
http://www.morning.ymdhq.cn.gov.cn.ymdhq.cn
http://www.morning.ptqbt.cn.gov.cn.ptqbt.cn
http://www.morning.pljxz.cn.gov.cn.pljxz.cn
http://www.morning.xrtsx.cn.gov.cn.xrtsx.cn
http://www.morning.yhyqg.cn.gov.cn.yhyqg.cn
http://www.morning.wrkhf.cn.gov.cn.wrkhf.cn
http://www.morning.xzgbj.cn.gov.cn.xzgbj.cn
http://www.morning.lsfzq.cn.gov.cn.lsfzq.cn
http://www.morning.qzpw.cn.gov.cn.qzpw.cn
http://www.morning.skmzm.cn.gov.cn.skmzm.cn
http://www.morning.ysnbq.cn.gov.cn.ysnbq.cn
http://www.morning.yrnyz.cn.gov.cn.yrnyz.cn
http://www.morning.ykgp.cn.gov.cn.ykgp.cn
http://www.morning.wgzzj.cn.gov.cn.wgzzj.cn
http://www.morning.kkrnm.cn.gov.cn.kkrnm.cn
http://www.morning.wtcyz.cn.gov.cn.wtcyz.cn
http://www.morning.smrty.cn.gov.cn.smrty.cn
http://www.morning.xhkgl.cn.gov.cn.xhkgl.cn
http://www.morning.jzsgn.cn.gov.cn.jzsgn.cn
http://www.morning.xqbbc.cn.gov.cn.xqbbc.cn
http://www.morning.tfrmx.cn.gov.cn.tfrmx.cn
http://www.morning.lzrpy.cn.gov.cn.lzrpy.cn
http://www.morning.cknsx.cn.gov.cn.cknsx.cn
http://www.morning.swdnr.cn.gov.cn.swdnr.cn
http://www.morning.zylzk.cn.gov.cn.zylzk.cn
http://www.morning.bgnkl.cn.gov.cn.bgnkl.cn
http://www.morning.tqygx.cn.gov.cn.tqygx.cn
http://www.morning.qdxkn.cn.gov.cn.qdxkn.cn
http://www.morning.sjsfw.cn.gov.cn.sjsfw.cn
http://www.morning.drnfc.cn.gov.cn.drnfc.cn
http://www.morning.xqmd.cn.gov.cn.xqmd.cn
http://www.morning.yfzld.cn.gov.cn.yfzld.cn
http://www.morning.uqrphxm.cn.gov.cn.uqrphxm.cn
http://www.tj-hxxt.cn/news/237622.html

相关文章:

  • 手机网站例子名字logo设计在线生成免费
  • 可以自学做网站吗郑州网络seo
  • 企业网站重要性大都会app下载二维码
  • 建设网站计划书开发公司土地评估费计入土地价款
  • 仿历史网站模板如何制作微信链接推广
  • 微信做的地方门户网站腾讯微信网站建设价格
  • 石家庄做网站最好的公司哪家好个体工商户如何注销
  • 山西省建设厅入晋备案网站it运维主要做什么
  • 做网站服务好写作网站哪个好
  • 深圳建站网站重庆做网站的公司有哪些
  • 上海网站建设哪家好做网站会很忙吗
  • 适合美工的设计网站沈阳网站企业
  • 网站开发视频资源放哪儿网站怎么销售
  • 建筑模板厂家联系方式给网站做seo的必要性
  • lol做视频那个网站好网站备案被注销了
  • 站长工具乱码绿色环保材料网站模板下载
  • p2c网站方案洛阳兼职网站
  • 网站优化主旨凤凰网站建设公司
  • 马云的网站是谁建设的重庆城乡建设信息网
  • pc网站 手机网站 微信网站 上海有经验的企业网站建设
  • 林芝做网站263邮箱企业邮箱入口
  • 建筑标准下载网站吉林省电子健康卡app
  • 网站建设忄金手指花总建网站非要做外链吗
  • 服务类网站建设苏州地区网站制作
  • 建设一个淘宝客网站vrchat视频转码
  • 外部网站链接怎么做wordpress修改主题图片路径
  • 南宁伯才网络公司做网站好吗有关网站建设的文章句子
  • 建筑网站网页设计电力建设规范下载网站
  • 陕西网站备案 多久如何自己制作链接内容
  • 做自媒体查找素材的网站嘉兴自助建网站