什么是html的混杂模式_HTML的完整形式是什么?

什么是html的混杂模式

HTML:超文本标记语言 (HTML: Hyper Text Markup Language)

HTML is an abbreviation of Hypertext markup language. Hypertext markup language is a text based standard markup language used to create web pages and design documents which are to be exposed to view in a web browser. It is marked up by put into writing in the form of HTML elements. Hyperlink alludes to a sequence series of joining links in a page to other pages. Markup language means to expound the page layout and elements inside the page by using the tags around the document text. Its primary center of attention is towards how to show information on web pages, i.e. On the internet, the webpages we spot are written using HTML code. HTML documents are elucidated and exposed to view by web browsers. Some popular web browsers are: Google Chrome, Mozilla Firefox, Opera, Safari, Internet Explorer etc.

HTML是超文本标记语言的缩写超文本标记语言是一种基于文本的标准标记语言,用于创建网页和设计文档,以供在Web浏览器中查看。 通过以HTML元素的形式写入来标记它。 超链接暗示页面中一系列链接到其他页面的一系列序列。 标记语言意味着通过使用文档文本周围的标签来说明页面布局和页面内的元素。 它的主要关注点是如何在网页上显示信息,即在Internet上,我们发现的网页是使用HTML代码编写的。 阐明了HTML文档并将其公开给Web浏览器查看。 一些流行的网络浏览器是:谷歌浏览器,Mozilla Firefox,Opera,Safari,Internet Explorer等。

In late 1990s, HTML was originated by Tim Berners-Lee. It was in the beginning launched in 1993. Until then, lots of versions of HTML have been launched. Latest HTML5 version is earning popularity because of its various substantial specifications.

在1990年代后期, HTML由Tim Berners-Lee提出。 它最初是在1993年发布的。在那之前,已经发布了许多版本HTML。 最新HTML5版本因其各种实质性规格而受到欢迎。

Following are some specifications of HTML5 version,

以下是HTML5版本的一些规范,

  • Video: To stream video from a website, the video element enables the users to access it.

    视频 :要从网站流式传输视频,视频元素使用户可以访问它。

  • Figure: Visual content like photos, illustrations, diagrams, etc. are displayed by the aid of the figure element.

    插图 :借助插图元素,可以显示诸如照片,插图,图表等的视觉内容。

  • Section: Webpage content gets organized by the help of section elements, such as div.

    Section :网页内容是通过诸如div之类的section元素来组织的。

  • NAV: That part of a website that is connected to other pages of the website is used by NAV.

    资产净值 :资产净值使用与网站其他页面连接的网站部分。

  • Header: Introductory elements on a website like a logo, navigation items, search form, etc. are combined by enabling through Header.

    标头 :通过标头启用,可以组合网站上的介绍性元素,如徽标,导航项,搜索表单等。

  • Footer: It is placed at the lowest part of a webpage. It usually holds copyright information, connections to social media and navigation elements.

    页脚 :位于页面的最低部分。 它通常拥有版权信息,与社交媒体的连接以及导航元素。

HTML full form

Example of HTML document:

HTML文档示例:

<!DOCTYPE>
<html>
<body>
<h1>Write Your First Heading</h1>
<p>Write Your First Paragraph.</p>
</body>
</html>

优点 (Advantages)

  • It is broadly used language for web pages coding.

    它是网页编码中广泛使用的语言。

  • HTML language is supported by every browser.

    每个浏览器都支持HTML语言。

  • It is simple to learn and use in creating web pages.

    创建网页很容易学习和使用。

  • A user does not require buying extra software because by default, It's found in every window.

    用户不需要购买额外的软件,因为默认情况下,它会在每个窗口中找到。

  • A user can combine or merge HTML with CSS, JavaScript, PHP, etc.

    用户可以将HTML与CSS,JavaScript,PHP等结合或合并。

缺点 (Disadvantages)

  • If a user requires dynamic pages then HTML is not convenient because It can only create static and plain pages.

    如果用户需要动态页面,则HTML不方便,因为它只能创建静态页面和普通页面。

  • A user requires writing a lot of code for creating simple web pages.

    用户需要编写大量代码来创建简单的网页。

  • In HTML, Security specifications are not up to the mark or satisfactory.

    在HTML中,安全性规范达不到要求或令人满意。

  • If a user requires writing a lengthy code for creating a webpage then it produces some difficulty.

    如果用户需要编写冗长的代码来创建网页,则会产生一些困难。

翻译自: https://www.includehelp.com/dictionary/html-full-form.aspx

什么是html的混杂模式

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540740.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

PHP-Manual的学习----【语言参考】----【类型】-----【对象】

Object 对象1.对象初始化要创建一个新的对象 object &#xff0c;使用 new 语句实例化一个类&#xff1a; class foo{ function do_foo(){ echo "1111"; }}$bar new foo;echo $bar->do_foo();输出&#xff1a;1111注解&#xff1a;一个类可以初始化…

kotlin 两个数字相加_Kotlin程序交换两个数字

kotlin 两个数字相加Given two numbers, we have to swap them. 给定两个数字&#xff0c;我们必须交换它们。 Example: 例&#xff1a; Input:First number: 10Second number: 20Output:First number: 20Second number: 10To swap two numbers – here we are using third v…

Kotlin入门(14)继承的那些事儿

上一篇文章介绍了类对成员的声明方式与使用过程&#xff0c;从而初步了解了类的成员及其运用。不过早在《Kotlin入门(12)类的概貌与构造》中&#xff0c;提到MainActivity继承自AppCompatActivity&#xff0c;而Kotlin对于类继承的写法是“class MainActivity : AppCompatActiv…

在Scala中列出| 关于Scala列表的完整教程

Scala | 清单 (Scala | List) List in Scala is a collection that stores data in the form of a liked-list. The list is an immutable collection which means the elements of a list cannot be altered after the list is created. Lists are flexible with data types, …

MySQL单机多实例部署详解之------多实例分别定义不同的配置文件

mysql多实例安装---分别定义不同的配置文件1.安装MySQL需要的依赖包[rootMySQL ~]# yum install ncurses-devel libaio-devel cmake -y[rootMySQL ~]# rpm -qa ncurses-devel libaio-develncurses-devel-5.7-4.20090207.el6.x86_64libaio-devel-0.3.107-10.el6.x86_642.安装编译…

javascript模块_JavaScript中的模块

javascript模块JavaScript模块 (JavaScript Modules) One of the key features of programming fundamentals is breaking down your code into fragments. These fragments depending on its functionality have been coined various terms like functions, components, modul…

在mac上安装Docker

1.进入一下地址进行下载docker https://download.docker.com/mac/stable/Docker.dmg 进入后进行下载后进行安装 2.将其拖动到Appliaction中即可 3.第一打开会有一个这样的欢迎页面 3.检查是否安装完成 出现上图所示标示安装完成了

composer 检查镜像_检查N元树中的镜像

composer 检查镜像Problem statement: 问题陈述&#xff1a; Given two n-ary trees, the task is to check if they are mirrors of each other or not. 给定两个n元树&#xff0c;任务是检查它们是否互为镜像。 Note: you may assume that root of both the given tree as …

浪潮各机型前面板指示灯含义

NF560D2 NF3020M2 NF5020M3 NF5140M3 NF5212H2 NF5220 NF5224L2 NF5240M3 NF5270M3 NF5280M2 NF5280M3 NF5540M3 NF5580M3 NF8420M3 NF8520 NF8560M2 说明&#xff1a;转浪潮官网。

python dll 混合_Python | 条线混合图

python dll 混合In some of the cases, we need to plot a bar-line hybrid plot. This plot helps in a better understanding of dynamics as well as the relative magnitude of each point in the plot. Bar-Line Hybrid Plots are mostly used for the representation of …

测试八 赛后感受

测试八 当我打开T1的时候&#xff0c;就没有往下看题目了&#xff0c;主要是发现T1就是之前做过&#xff0c;而且我也看过题解的题目&#xff0c;接着就开始钻研&#xff0c;当然&#xff0c;也没什么好钻研的&#xff0c;大概思路还是知道的&#xff0c;再写写数据就已经很清晰…

推荐五个免费的网络安全工具

导读&#xff1a; 在一个完美的世界里&#xff0c;信息安全从业人员有无限的安全预算去做排除故障和修复安全漏洞的工作。但是&#xff0c;正如你将要学到的那样&#xff0c;你不需要无限的预算取得到高质量的产品。这里有SearchSecurity.com网站专家Michael Cobb推荐的五个免费…

bios部署模式审核模式_BIOS的完整形式是什么?

bios部署模式审核模式BIOS&#xff1a;基本输入输出系统 (BIOS: Basic Input Output System) BIOS is an abbreviation of the Basic Input Output System. In the beginning, when you first set on your computer, the first software which starts run by the computer is &…

day04-装饰器

一、装饰器定义 1&#xff09;装饰器&#xff1a;本质是函数。 2&#xff09;功能&#xff1a;用来装饰其他函数&#xff0c;顾名思义就是&#xff0c;为其他的函数添加附件功能的。 二、原则 1&#xff09;不能修改被装饰函数的源代码 2&#xff09;不能修改被装饰函数的调用方…

c 语言bool 类型数据_C ++中的bool数据类型

c 语言bool 类型数据In C programming language, to deal with the Boolean values – C added the feature of the bool data type. A bool variable stores either true (1) or false (0) values. 在C 编程语言中&#xff0c;为了处理布尔值– C 添加了bool数据类型的功能 。…

C ++中的std :: binary_search()

binary_search()作为STL函数 (binary_search() as a STL function) Syntax: 句法&#xff1a; bool binary_search (ForwardIterator first, ForwardIterator last, const T& value);Where, 哪里&#xff0c; ForwardIterator first iterator to start of the range For…

HNUSTOJ-1437 无题

1437: 无题 时间限制: 1 Sec 内存限制: 128 MB提交: 268 解决: 45[提交][状态][讨论版]题目描述 tc在玩一个很无聊的游戏&#xff1a;每一次电脑都会给一个长度不超过10^5的字符串&#xff0c;tc每次都从第一个字符开始&#xff0c;如果找到两个相邻相一样的字符&#xff0c;…

凯撒密码pythin密码_凯撒密码术

凯撒密码pythin密码Caesar cipher is one of the well-known techniques used for encrypting the data. Although not widely used due to its simplicity and being more prone to be cracked by any outsider, still this cipher holds much value as it is amongst the fir…

MultiQC使用指导

MultiQC使用指导 官网资料文献&#xff1a;MultiQC --- summarize analysis results for multiple tools and samples in a single report参考资料一&#xff1a; 整合 fastq 质控结果的工具 简介 MultiQC 是一个基于Python的模块, 用于整合其它软件的报告结果, 目前支持以下软…

FYFG的完整形式是什么?

FYFG&#xff1a;对您的未来指导 (FYFG: For Your Future Guidance) FYFG is an abbreviation of "For Your Future Guidance". FYFG是“ For your Future Guidance”的缩写 。 It is an expression, which is commonly used in the Gmail platform. It is also wr…