转载
What is HTML?
HTML is a language for describing web pages.
- HTML stands for Hyper Text Markup Language
- HTML is not a programming language, it is a markup language
- A markup language is a set of markup tags
- HTML uses markup tags to describe web pages
HTML Tags
HTML markup tags are usually called HTML tags
- HTML tags are keywords surrounded by angle brackets like <html>
- HTML tags normally come in pairs like <b> and </b>
- The first tag in a pair is the start tag, the second tag is the end tag
- Start and end tags are also called opening tags and closing tags
HTML Documents = Web Pages
- HTML documents describe web pages
- HTML documents contain HTML tags and plain text
- HTML documents are also called web pages
The purpose of a web browser (like Internet Explorer or Firefox) is to read HTML documents and display them as web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page:
<html> <body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body> </html>
|
Example Explained
- The text between <html> and </html> describes the web page
- The text between <body> and </body> is the visible page content
- The text between <h1> and </h1> is displayed as a heading
- The text between <p> and </p> is displayed as a paragraph
分享到:
相关推荐
### HTML5与CSS3简介 #### 一、HTML5概览 HTML5是HyperText Markup Language(超文本标记语言)的第五个版本,它在HTML4的基础上进行了许多改进和扩展,旨在提供更好的网页表现能力、多媒体支持以及跨平台兼容性。...
Introduction to Web Interaction Design With HTML and CSS 英文epub 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者或csdn删除
selfintroduction.html
HTML_Introduction.chm
markdown_introduction.html
24. HTML Introduction (HTML介绍) 25. JavaScript Introduction (JavaScript介绍) 26. Introduction to JavaServer Pages (JSP介绍) 27. Creating, Deploying and Executing a JSP (生成, 部署及运行...
HTML Introduction HTML Get Started HTML Basic HTML Elements HTML Attributes HTML Headings HTML Paragraphs HTML Formatting HTML Fonts HTML Styles HTML Links HTML Images HTML Tables HTML Lists HTML ...
HTML 5是现代网页开发的核心,它在2014年被正式确立为W3C标准,极大地丰富了Web应用程序的功能性和用户体验。本资源包含一个HTML 5介绍的PPT和一个DEMO,旨在帮助开发者和学习者深入理解HTML 5的新特性与应用。 ...
《MIT Introduction To Algorithms》是计算机科学领域的一门经典课程,主要涵盖了算法的设计、分析和实现。这门课程的资源包括了算法导论的HTML版本、MIT教师制作的PPT课件、相关的习题以及习题解答,为学习者提供了...
Eclipse平台的动机在于构建应用程序开发工具的支持,促进独立工具供应商的发展,以及为多种类型内容(如Java、HTML、C、XML等)的开发提供便利。它的一个关键特性是插件架构,允许通过编写Java语言轻松地集成各种...
Introduction to yasm Yasm is a complete rewrite of the NASM-2.14.02 assembler. It supports the x86 and AMD64 instruction sets, accepts NASM and GAS assembler syntaxes and outputs binary, ELF32 and ELF...
An Introduction to libuv中文版来自于一个github上的帮助文档的翻译项目,原项目地址为https://github.com/forhappy/uvbook,这个项目是libuv这个C++库的中文帮助文档。但它是rst格式的文档,需要用python工具...
Introduction to Web Interaction Design With HTML and CSS 英文azw3 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者或csdn删除
8. **introduction.html**: 入门指南,可能会包含如何安装libuv、初始化和关闭事件循环等基本用法。 9. **multiple.html**: 可能涉及在多核心或多处理器环境下的使用策略,或者libuv如何处理多个事件循环。 10. **...
- **JavaServer Pages (JSP)**:一种混合HTML代码与Java代码的页面技术。 - **Enterprise JavaBeans (EJB)**:用于构建可重用的业务逻辑组件。 - **Java Persistence API (JPA)**:提供对象关系映射功能,简化了...
Reinforcement Learning - An Introduction (原版,非HTML打印)
《Introduction to Computation and Programming Using Python》是一本广泛应用于计算机科学教育领域的经典教材,由 MIT 提供。这本书旨在为初学者提供一个扎实的计算思维基础,并通过 Python 编程语言来实现这一...
Html Introduction – Php Lecture 2
HTML5是一种新兴的Web开发标准,自2004年开始逐渐成形,目前各大主流浏览器,包括微软的Internet Explorer 9,都在拥抱和实现其定义的新功能。HTML5不仅是在细节上的改进和变化,更是提供了高级功能,比如对多媒体...