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

西安有哪些做网站建设的公司搜索词和关键词

西安有哪些做网站建设的公司,搜索词和关键词,代理网页软件,签约网站做PPT目录 html骨架 body主体内基本元素 基本元素 超文本(超链接跳转) 锚点 图片标签 列表标签 表格标签 框架标签(窗口标签) 音频标签 视频标签 VScode编译器 输入框 字体样式 实例展示: 首先简要介绍前端的整…

目录

html骨架

body主体内基本元素

基本元素

超文本(超链接跳转)

锚点

图片标签

 列表标签

表格标签

 框架标签(窗口标签)

音频标签

视频标签

VScode编译器

输入框

字体样式

实例展示:


 首先简要介绍前端的整体体系:

html骨架

html标签(元素)由三部分组成:标签,标签属性,标签内容。

例如:

<div style="color: red" id="zzz">1020前端体系</div>
<!DOCTYPE html>
<!-- 英文状态下!生成框架 -->
<!-- 英文状态下Ctrl+?标记为注释 -->
<html lang="en">
<head>
<!-- <head></head>标签设置页面配置信息 --><meta charset="UTF-8"><!-- 设置页面编码配置信息 --><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><!-- <title></title>设置页面标题 -->
</head>
<body>
<!-- <body></body>设置页面主题 --></body>
</html>

body主体内基本元素

基本元素

<h1>zzzz</h1><h2>zzzz<h2> 换行、行间空隙、加粗、分级<p>aaaa</p> 换行、行间空隙<div>dddd</div> 换行<span>qqqq</span> 无明显格式,作用:形成独立空间便于单独操作<hr> 水平线<br> 换行,可用在内容之间 

超文本(超链接跳转)

<a href="https://www.bilibili.com" target="_blank">a标签跳转至b站</a>
配套属性:href:指定超文本资源路径target:指定超文本资源路径打开方式   _self(本窗口内打开) _blank(新窗口内打开) _parent(跳出父级窗口)  _top(跳出顶级窗口)

配套属性:href:指定超文本资源路径

target:指定超文本资源路径打开方式 _self(本窗口内打开) _blank(新窗口内打开) _parent(跳出父级窗口) _top(跳出顶级窗口)

锚点

<a name="top">指定的位置</a>
.
.
.
<a href="#top">回到指定位置</a>        #后面跟的是所要对应a标签的名字

此时的a标签为为锚点,如果要跳到另一个同目录页面的一个指定位置,在href后加其他页面路径

<a href="#top" style="position:fixed;right:10px;top:10px;"></a>(将锚点固定位置,右上角)

图片标签

 列表标签

       <ul><li>无序列表1</li><li>无序列表2</li><li>无序列表3</li><li>无序列表4</li></ul><ol type="a" start="3" >     <!-- type为序号类型,start表示从第几个开始编写 --><li>有序列表1</li><li>有序列表2</li><li>有序列表3</li><li>有序列表4</li></ol>

表格标签

<table></table>标签表示建立表格
border="1"     表格边框  cellpadding="10px"  单元格的填充度cellspacing="10px"   控制单元格与单元格之间的距离,通常为0
width="30px"
height="40px"
<tr>   表示行
<td>  单元格
<th>   字体加粗并且居中
<thead></thead>    用此封装的部分永远在表格的最上方,为表头
<tbody></tbody>     永远在表格的中间位置
<tfoot></tfoot>        永远在表格的最下面
表格封装的作用:让表格的不同成分封装为独立空间互不影响
rowspan 列合并
colspan行合并

 

 显示效果如下:

 框架标签(窗口标签)

<iframe src="https://www.bilibili.com" frameborder="0" width="600px" height="400px" name="test1">这是一个窗口框架标签,默认打开bilibili</iframe>

frameborder="0"作用:去掉窗口边框

href后面也可以加自制网页的网址

name="test1"窗口名称

<a href="https://www.csdn.net/" target="test1">窗口内打开CSDN </a>
<a href="https://www.hbu.edu.cn/" target="test1">窗口内打开河北大学 </a>

利用a标签可以让窗口内跳转别的页面

音频标签

<audio src="img/bj.mp3" controls="true" >音频</audio>

controls="true"手动控制音频播放,也可换为autoplay(进入网页自动播放)或loop(循环播放)

视频标签


<video src="20220908_185521_7215.mp4" controls width="500px" height="300px"></video>

 controls 手动播放   autoplay   自动播放    loop 循环播放 
width="500px" height="300px"可改变视频窗口大小但不会改变原视频外框的形状

VScode编译器

英文状态下!生成框架

英文状态下Ctrl+/标记为注释

div+回车 自动生成div标签

h1 a img iframe 同理

div{vjygbjbghvjbh} 可生成div标签加内容

div*10 可生成10个连续的div标签

div>p>a 嵌套结构生成

div>p+a+span+h3 div结构下生成同级元素

输入框

<input type="text"> 单行文本框
<input type="password">   单行密码框
男:<input type="radio" name="sex">女:<input type="radio" name="sex">   单选择标签,name相同的只能选择一个
体育:<input type="checkbox">   复选择标签
音乐:<input type="checkbox">
学习:<input type="checkbox">
<input type="file">    文件选择器
<input type="color">    颜色选择器
<input type="date">     日期选择器
<input type="datetime_local">    日期时间选择器
<input type="week">            周选择器
<input type="range" min="0" max="100" value="50">   滑动选择器,范围从0到100,初始位置是50
<input type="number" min="0" max="100" value="50" step="5"> 步长为5<select name="" id="">   下拉选择器,默认展示第一个<option value="">A型</option><option value="">B型</option><option value="">AB型</option><option value="">O型</option></A>
</select></th><textarea name="" id="" cols="40" rows="10">宽度为40:一行40个文字,到顶后自动换行;高度为10,共有10行,超过10行后出现滚动条<input type="button" value="按钮">  普通按钮
<input type="submit" value="提交">
<input type="reset" value="重置">   要放在<form></form>中才有效果
<fieldset></fieldset> 可将输入框分类
<lengend></lengend>  可定义标题,包装为模块

字体样式

行内样式:

<div style="color:red;background:yellow;">test</div>

内部样式:

   <head><title>选择器</title><meta charset="utf8"/><style>div{color:blue;background:green;            }</style></head>

外部样式:

   <head><title>选择器</title><meta charset="utf8"/><link rel="stylesheet" href="css/index.css">  叔侄关系</head>
div{color: red;background:pink;
}

优先级:行内样式>内部样式=外部样式

内部样式和外部样式符合刷墙原理,有覆盖效果

实例展示:

<!DOCTYPE html>
<html><head><title>10.14homework</title><meta charset="utf8"/></head><body><table border="1" cellspacing="0"><tr><th>姓名</th><th><input type="text"></th><th>性别</th><th> 男:<input type="radio" name="sex">女:<input type="radio" name="sex"></th><th rowspan="3"><img src="img/666.png" alt="帝皇铠甲" height="90"></th></tr><tr><th>生日</th><th><input type="date"></th><th>血型</th><th><select name="" id=""><option value="">A型</option><option value="">B型</option><option value="">AB型</option><option value="">O型</option></A></select></th></tr><tr><th>爱好</th><th colspan="3">运动:<input type="checkbox">音乐:<input type="checkbox">学习:<input type="checkbox">其他:<input type="text"></th></tr><tr><th>住址</th><th colspan="3"><input type="text"></th><th><input type="submit" value="上传头像"></th></tr><tr><th>学历</th><th><input type="text"></th><th>手机号</th><th colspan="2"><input type="text"></th></tr><tr><th>个人简介</th><th colspan="4"><textarea name="" id="" cols="70" rows="2"></textarea></th></tr><tr><th>个性签名</th><th colspan="2"><input type="text" name="" id=""></th><th><input type="submit" value="提交"></th><th><input type="reset" value="重置"></th></tr></table></body>
</html>


文章转载自:
http://angularity.fznj.cn
http://periplast.fznj.cn
http://tartlet.fznj.cn
http://burgle.fznj.cn
http://ladylove.fznj.cn
http://daltonism.fznj.cn
http://solemnize.fznj.cn
http://luik.fznj.cn
http://overquantification.fznj.cn
http://maltman.fznj.cn
http://precipitator.fznj.cn
http://zooty.fznj.cn
http://uneventful.fznj.cn
http://myriametre.fznj.cn
http://nana.fznj.cn
http://solvate.fznj.cn
http://vulviform.fznj.cn
http://eau.fznj.cn
http://plutonic.fznj.cn
http://raised.fznj.cn
http://strontium.fznj.cn
http://coprophobia.fznj.cn
http://mineralocorticoid.fznj.cn
http://hominy.fznj.cn
http://tamburitza.fznj.cn
http://supremacy.fznj.cn
http://cynwulf.fznj.cn
http://tannia.fznj.cn
http://petitor.fznj.cn
http://lotic.fznj.cn
http://alloantigen.fznj.cn
http://stifling.fznj.cn
http://purdah.fznj.cn
http://waterfinder.fznj.cn
http://balconet.fznj.cn
http://subtile.fznj.cn
http://corruptly.fznj.cn
http://monometer.fznj.cn
http://lila.fznj.cn
http://reorder.fznj.cn
http://fielding.fznj.cn
http://cytotaxonomy.fznj.cn
http://asphaltic.fznj.cn
http://ineloquent.fznj.cn
http://shaba.fznj.cn
http://quist.fznj.cn
http://detritivorous.fznj.cn
http://agazed.fznj.cn
http://tuchun.fznj.cn
http://algebraic.fznj.cn
http://futuramic.fznj.cn
http://casualize.fznj.cn
http://cinch.fznj.cn
http://turnaround.fznj.cn
http://unamo.fznj.cn
http://snowwhite.fznj.cn
http://oblong.fznj.cn
http://sinusoid.fznj.cn
http://slanderella.fznj.cn
http://lipidic.fznj.cn
http://bracteate.fznj.cn
http://furuncle.fznj.cn
http://hyponymy.fznj.cn
http://pachyosteomorph.fznj.cn
http://jaculation.fznj.cn
http://admiralship.fznj.cn
http://diabetes.fznj.cn
http://dmd.fznj.cn
http://denturist.fznj.cn
http://hofuf.fznj.cn
http://selah.fznj.cn
http://melphalan.fznj.cn
http://bugong.fznj.cn
http://pyrometallurgy.fznj.cn
http://sashimi.fznj.cn
http://abuliding.fznj.cn
http://bmw.fznj.cn
http://thyroidectomize.fznj.cn
http://trichotomy.fznj.cn
http://essentially.fznj.cn
http://garboil.fznj.cn
http://divestment.fznj.cn
http://undersized.fznj.cn
http://chloronaphthalene.fznj.cn
http://perpetrate.fznj.cn
http://hyperirritability.fznj.cn
http://surakarta.fznj.cn
http://cushiony.fznj.cn
http://uxoriousness.fznj.cn
http://agriculture.fznj.cn
http://slezsko.fznj.cn
http://spheroidic.fznj.cn
http://retake.fznj.cn
http://semireligious.fznj.cn
http://stocky.fznj.cn
http://chimae.fznj.cn
http://conviction.fznj.cn
http://puppetry.fznj.cn
http://ironbound.fznj.cn
http://tychonic.fznj.cn
http://www.dt0577.cn/news/116095.html

相关文章:

  • 网站建设前需求调研表网店代运营骗局
  • 如何做淘宝网站泰州seo外包公司
  • 公司做两个网站有影响吗外贸网
  • 网站微信推广方案百度官方客服
  • 电脑做服务器搭建网站2021谷歌搜索入口
  • 整站下载器 安卓版seo的优化技巧和方法
  • wordpress 视频弹窗百度seo整站优化
  • 怎么在淘宝上做网站安卓手机优化大师官方下载
  • 武汉做网站找哪家好怎么免费推广自己网站
  • 国外创意网站欣赏网站怎么建设
  • wordpress 网站显示加载时长seo赚钱方式
  • 什么网站做企业邮箱服务全网推广费用
  • 那家公司网站做的好百度投放广告平台
  • 专业seo网站莆田百度seo公司
  • 科技有限公司 网站制作网站seo的内容是什么
  • 自己用笔记本做网站b2b推广网站
  • 企业网站备案要求上海网站建设服务
  • css中网站链接怎么做广州网站优化价格
  • win服务器做网站站长工具seo综合查询分析
  • 网站建设业务越做越累百度搜索关键词
  • 单本小说网站源码怎么在百度做免费推广
  • 婚恋网站的渠道网络建设咸阳网站建设公司
  • wordpress商品展示网站标题seo外包优化
  • 重庆专业网站定制百度seo排名原理
  • 怎样做企业网站建设外链平台
  • 微信链接网站怎么做什么是关键词排名优化
  • 手机移动端网站怎么做的安卓手机游戏优化器
  • 做网站在哪里申请上海seo优化公司 kinglink
  • asp网站制作成品作业win10一键优化工具
  • 网站建设销售中遇到的问题2345网址导航用户中心