常用的HTML格式、字体标记、连接方法是什么-成都创新互联网站建设

关于创新互联

多方位宣传企业产品与服务 突出企业形象

公司简介 公司的服务 荣誉资质 新闻动态 联系我们

常用的HTML格式、字体标记、连接方法是什么

这篇文章主要介绍了常用的HTML格式、字体标记、连接方法是什么的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇常用的HTML格式、字体标记、连接方法是什么文章都会有所收获,下面我们一起来看看吧。

创新互联建站联系热线:13518219792,为您提供成都网站建设网页设计及定制高端网站建设服务,创新互联建站网页制作领域10余年,包括成都塔吊租赁等多个方面拥有丰富的营销推广经验,选择创新互联建站,为企业保驾护航。

HTML(hypertext markup language,超文本标记语言):是一种用来制作超文本文档的简单标记语言。用于描述网页的格式设计(在网页上定义一个标题、文本或表格等)和它与万维网上其他页面的连接信息。

分为静态网页和动态网页

(1)静态网页:纯HTML格式网页,仅能提供浏览,无法与网站进行互动。在静态网页中,整个网页的主要结构与网页的显示控制必须利用html实现。静态页的扩展名一般问。htm、。html、。shtml、。xml。

静态网页的执行过程:

浏览器向网络中的服务器发出请求,指向某个静态网页服务器接收到请求后,传输给浏览器文本文件浏览器接收到服务器传来的文件后,解析HTML标签,将结果显示出来。

(2)动态网页:网页的内容可以根据某种条件的改变而自动改变。采用动态技术的网页。动态网页的扩展名为。asp、。jsp、。php、。perl、。cgi等扩展名,并且在动态网页网址中有一个标志性的符号“?”

HTML用于描述功能的符号。标记在使用时必须用尖括号括起来。浏览器会对尖括号里面的标记进行解释。html常用的主要标记有、、、<body>。</p><p>标记分为单标记和双标记:</p><p>(1)单标记:只需在尖括号中输入标记名即可,一种单标记表示一种功能,没有范围之分。</p><p>格式:<标记></p><p>如换行标记:<br></p><p>(2)双标记:标记有头有尾,前面标记与后面标识保持一致,后面标记有斜杠。</p><p>格式:<标记>内容</标记></p><p>如段落标记;<p>? </p></p><p><html></html>里面包含头部<head>和内容体<body>。</p><p>(1)表格布局技术:表格布局在过去比较普遍,就是将各种需要的额布局文本、图像素材等放到无边框的表格中,优点是不用担心不同对象之间的影响,缺点是降低网页下载速度。</p><p>(2)CSS(层叠样式表)技术:又称为DIV+CSS布局技术,可以精确定位文本和图片,将数据和格式分开,使网页的数据量大大减少。</p><p>格式:<h#>主题文字</h#></p><p>#是标题字号1-6,数字越大字号越小。</p><p>(1)段落标记</p><p>格式:<p>这里表示段落</p></p><p>段落之间会空一行</p><p>(2)段落中的空格</p><p>格式:“ ”</p><p>(3)强制换行</p><p>格式:<br></p><p>格式:<!--这里放注释--></p><p>粗体格式:<b>粗体,这里显示的是粗体</b></p><p>斜体格式:<i>斜体,这里显示的是斜体</i></p><p>下划线:<u>下划线</u></p><p>删除线:<s>删除线</s></p><p>上标:<sup>上标</sup></p><p>下标:<sub>下标</sub></p><p>格式:<font size="1">要放的文字</font></p><p>关键字size用来表示大小,从1-7的任意一个数字,数字越大,字体也就越大。</p><p>格式:<font?color="red">要放的文字</font></p><p>color后可以接颜色的单词,也可以接RGB颜色值,如color="#cccccc";i</p><p>物理字体:</p><p>逻辑字体:</p><p>(1)换行控制</p><p>注意换行<p>和强制换行<br>的区别</p><p><p>换行中间会空一行,<br>不会空一行</p><p>实例:</p><p>测试效果:</p><p>(2)不换行控制</p><p>格式:<nobr>添加文字</nobr></p><p>该标记中的文字,不会换行,在页面中一行里一直显示下去。</p><p>语法:align="#"</p><p>#可以为left、right、center。</p><p>align需要配合<p></p>等使用。</p><p>如文字右对齐:</p><p>cener可不用align关键字,进行居中处理</p><p>列表分为有序列表和无序列表。有序列表前时有序号的数字;无序列表前是圆圈。</p><p>(1)无序列表</p><p>语法:</p><p>(2)有序列表</p><p>(1)设置文字滚动</p><p>默认格式:<marquee>添加文字</marquee></p><p>默认从右到左,循环滚动。</p><p>(2)设置文字滚动方向</p><p>direction属性设置内容的滚动方向,属性值有left、right、up、down。</p><p><marquee direction>添加文字</marquee></p><p>(3)设置文字滚动的速度和形式</p><p>(1)在网页中插入图像</p><p>格式:<img src="cd.jpg"></p><p>(2)图像无法显示时的提示信息</p><p>格式:<img src="cd.jpg" alt="图片无法正常显示时显示的文字"></p><p>(3)控制图像的大小</p><p>格式:<img src="cd.jpg" width="400px" height="400px"></p><p>格式:<img src="cd.jpg" align="#"></p><p>#为图片与文字对齐的属性设置,可选top right botton left middle</p><p><img src="cd.jpg" border="#px"></p><p>#为边框像素大小</p><p>关于“常用的HTML格式、字体标记、连接方法是什么”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“常用的HTML格式、字体标记、连接方法是什么”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注创新互联行业资讯频道。</p> <br> 文章标题:常用的HTML格式、字体标记、连接方法是什么 <br> URL标题:<a href="http://kswsj.cn/article/gpgjgi.html">http://kswsj.cn/article/gpgjgi.html</a> </div> </div> <div class="other"> <h3>其他资讯</h3> <ul> <li> <a href="/article/dsghghh.html">linux命令解码 linux解锁命令</a> </li><li> <a href="/article/dsghggp.html">linux下的编辑命令 linux命令行编辑</a> </li><li> <a href="/article/dsghgpp.html">阿里云服务器搭建公网dns 阿里云服务器公网ip</a> </li><li> <a href="/article/dsghghg.html">公网ip怎么绑定域名 公网ip绑定域名使用ip能访问使用域名不能访问</a> </li><li> <a href="/article/dsghjod.html">php数据统计系统 php数据统计系统有哪些</a> </li> </ul> </div> </div> <div class="line"></div> <!--底部--> <footer id="5"> <div class="foot1 container"> <div class="list"> <div class="item"> <a href="javascript:;"> <span class="ico1"><i class="iconfont"></i><img src="/Public/Home/img/ewm.png" alt=""></span> <strong>关注我们</strong> </a> </div> <div class="item"> <a href="" target="_blank"> <span><i class="iconfont"></i></span> <strong>索要报价</strong> </a> </div> <div class="item"> <a href="" target="_blank"> <span><i class="iconfont"></i></span> <strong>我要咨询</strong> </a> </div> <div class="item"> <a href="" target="_blank"> <span><i class="iconfont"></i></span> <strong>找到我们</strong> </a> </div> <div class="item"> <a href="" target="_blank"> <span><i class="iconfont"></i></span> <strong>投诉建议</strong> </a> </div> </div> <div class="tel"> <dl> <tel><a href="tel:400-028-6601" target="_blank">400-028-6601</a></tel><br> <span>也许您需要专业的服务,欢迎来电咨询</span> </dl> <dl> <tel><a href="tel:18980820575" target="_blank">18980820575</a></tel><br> <span>您的需求,是我们前进的动力</span> </dl> </div> </div> <div class="friend"> <div class="container"> <span class="tit">友情链接:</span> <div class="inner"> <a href="https://www.cdcxhl.com/gaiban/" target="_blank">成都网站改版公司</a><a href="https://www.cdcxhl.com/zuyong/" target="_blank">成都租用服务器</a><a href="https://www.cdcxhl.com/tuoguan/" target="_blank">IDC机房托管</a><a href="https://www.cdcxhl.com/douyin/" target="_blank">抖音代运营</a><a href="https://www.cdcxhl.com/wangzhandingzhi.html" target="_blank">成都定制网页设计</a><a href="https://www.cdcxhl.com/xiaochengx.html" target="_blank">成都微信小程序开发</a><a href="https://www.cdcxhl.com/shop.html" target="_blank">成都商城网站开发</a><a href="https://www.cdcxhl.com/waimao.html" target="_blank">外贸网站建设</a><a href="https://www.cdcxhl.com/link/" target="_blank">外链</a><a href="https://www.cdcxhl.com/yunying.html" target="_blank">网站运营</a><a href="https://www.cdcxhl.com/tuoguan/yaan/" target="_blank">雅安云锦天府</a><a href="https://www.cdcxhl.com/xiangyingshi.html" target="_blank">成都响应式网站建设公司</a><a href="https://www.cdcxhl.com/app.html" target="_blank">成都app开发公司</a><a href="https://www.cdcxhl.com/xiaochengx.html" target="_blank">微信小程序开发公司</a><a href="https://www.cdcxhl.com/" target="_blank">成都建站</a><a href="https://www.cdcxhl.com/weihu/" target="_blank">网站维护</a><a href="https://www.cdcxhl.com/gaiban/chengdu.html" target="_blank">成都网站改版</a><a href="https://www.cdcxhl.com/google.html" target="_blank">成都谷歌推广</a> </div> </div> </div> <div class="foot"> <div class="container"> <div class="footNav"> <h3>网站建设</h3> <a href="http://seo.cdkjz.cn/mobile/" target="_blank">营销型网站建设</a><a href="http://www.kswcd.com/mobile/" target="_blank">手机网站建设</a><a href="http://www.cxjianzhan.com/" target="_blank">网站建设公司</a> </div> <div class="footNav"> <h3>服务器托管</h3> <a href="https://www.cdcxhl.com/idc/zongshu.html" target="_blank">棕树服务器托管</a><a href="https://www.cdcxhl.com/idc/ziyang.html" target="_blank">资阳天府云计算中心</a><a href="http://www.cdfuwuqi.com/jigui/" target="_blank">成都机柜租用</a> </div> <div class="footNav"> <h3>网站制作</h3> <a href="http://chengdu.cdcxhl.cn/qiye/" target="_blank">企业网站制作</a><a href="http://www.wjwzjz.com/" target="_blank">温江网站制作</a><a href="http://www.myzwz.com/" target="_blank">绵阳网站制作</a> </div> <div class="footNav"> <h3>企业服务</h3> <a href="https://www.cdcxhl.com/shoulu/" target="_blank">网站免费收录</a><a href="https://www.cdcxhl.com/mianfei/jianshe/chengdu.html" target="_blank">免费网站建设</a><a href="https://www.cdcxhl.com/shoulu/" target="_blank">免费收录</a> </div> <div class="fr ecode"> <div class="fl"> <img src="/Public/Home/img/ewm.jpg"> <p>关注企业微信</p> </div> <div class="fr slogan"> <p class="icon"> <a class="ph" href=""><i class="iconfont"></i></a> <a class="qq" href="tencent://message/?uin=1683211881&Site=&Menu=yes"><i class="iconfont"></i></a> </p> <p> <i>想要找 </i> <a href="">小程序开发</a>、<a href="">APP开发</a>、 <a href="">营销型网站建设</a>、<a href="">网站建设</a>、 <i><a href="">网站定制开发</a></i> ,就选<a href="">创新互联</a> </p> </div> </div> </div> <div class="bottom container"> <p class="fl"> 版权所有:成都创新互联科技有限公司 备案号:<a href="https://beian.miit.gov.cn/" target="_blank" rel="nofollow">蜀ICP备19037934号</a> 服务热线:028-86922220 </p> <p class="fr"> <a href="https://www.cdxwcx.com/" target="_blank">成都网站建设</a>: <a href="https://www.cdcxhl.com/" target="_blank">创新互联</a> </p> </div> </div> </footer> <!--在线咨询--> <div class="fot"> <ul> <li> <a href="https://p.qiao.baidu.com/cps/mobileChat?siteId=11284691&userId=6256368&type=1&reqParam=%20{%22from%22:0,%22sessionid%22:%22%22,%22siteId%22:%2211284691%22,%22tid%22:%22-1%22,%22userId%22:%226256368%22,%22ttype%22:1,%22siteConfig%22:%20{%22eid%22:%226256368%22,%22queuing%22:%22%22,%22siteToken%22:%226ce441ff9e2d6bedbdfc2a4138de449e%22,%22userId%22:%226256368%22,%22isGray%22:%22false%22,%22wsUrl%22:%22wss://p.qiao.baidu.com/cps3/websocket%22,%22likeVersion%22:%22generic%22,%22siteId%22:%2211284691%22,%22online%22:%22true%22,%22webRoot%22:%22//p.qiao.baidu.com/cps3/%22,%22bid%22:%22160142915792139572%22,%22isSmallFlow%22:0,%22isPreonline%22:0,%22invited%22:0%20},%22config%22:%20{%22themeColor%22:%224d74fa%22%20}%20}&appId=&referer=&iswechat=0&expectWaiter=-1&openid=null&otherParam=null&telephone=null&speedLogId=null&eid=null&siteToken=6ce441ff9e2d6bedbdfc2a4138de449e" target="_blank"> <img src="/Public/Home/img/fot1.png" alt=""> <p>在线咨询</p> </a> </li> <li> <a href="tel:18980820575" target="_blank"> <img src="/Public/Home/img/fot2.png" alt=""> <p>拨打电话</p> </a> </li> </ul> </div> </body> </html> <script> $(".con img").each(function(){ var src = $(this).attr("src"); //获取图片地址 var str=new RegExp("http"); var result=str.test(src); if(result==false){ var url = "https://www.cdcxhl.com"+src; //绝对路径 $(this).attr("src",url); } }); window.onload=function(){ document.oncontextmenu=function(){ return false; } } </script>