博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何使用HTML 元件
阅读量:2503 次
发布时间:2019-05-11

本文共 1657 字,大约阅读时间需要 5 分钟。

This tutorial series will guide you through creating and further customizing using HTML, the standard markup language used to display documents in a web browser. No prior coding experience is necessary but we recommend you start at the if you wish to recreate the demonstration website.

本教程系列将指导您使用HTML(用于在Web浏览器中显示文档的标准标记语言)创建和进一步自定义 。 不需要任何编码经验,但是如果您希望重新创建演示网站,建议您从的 。

At the end of this series, you should have a website ready to deploy to the cloud and a basic familiarity with HTML. Knowing how to write HTML will provide a strong foundation for learning additional front-end web development skills, such as CSS and JavaScript.

在本系列的最后,您应该拥有一个可以部署到云的网站,并且对HTML有了基本的了解。 知道如何编写HTML将为学习其他前端Web开发技能(例如CSS和JavaScript)奠定坚实的基础。

The HTML <body> element is a semantic element that tells the browser that its content is part of the body of the webpage and intended for display. In this tutorial, we will add a <body> element to our web document where we can add content later on.

HTML <body>元素是一个语义元素,它告诉浏览器其内容是网页正文的一部分并打算显示。 在本教程中,我们将向Web文档中添加<body>元素,稍后我们可以在其中添加内容。

To add a <body> element to your document, insert opening and closing <body> tags after the closing </head> tag but before the closing </html> tag. Your document should now have the following code:

要将<body>元素添加到文档中,请 </head>标记之后但 </html>标记之前插入打开和关闭<body> </html>标记。 您的文档现在应具有以下代码:

  
Sammy’s First Website

You should now understand the purpose of an HTML <body> element and understand how to add one to your HTML file.

现在,您应该了解HTML <body>元素的用途,并了解如何向HTML文件添加一个元素。

In the next step, we’ll begin to add our website content in between the <body> tags.

下一步,我们将开始在<body>标签之间添加网站内容。

翻译自:

转载地址:http://bsegb.baihongyu.com/

你可能感兴趣的文章
Appium Studio 初体验(windows做ios自动化,录制appium脚本)
查看>>
学习java前端 两种form表单提交方式
查看>>
Linux常用命令
查看>>
整体二分&cdq分治 ZOJ 2112 Dynamic Rankings
查看>>
【POJ2976】Dropping tests (01分数规划入门题)
查看>>
通过正则表达式获取url中参数
查看>>
86.运算符重载
查看>>
cxx signal信号捕获
查看>>
《Android开发艺术探索》读书笔记——Cha3.2.3改变布局参数实现View的滑动
查看>>
python闭包与装饰器
查看>>
Acegi 源码解释
查看>>
Activity的几种启动跳转方式
查看>>
LCA最近公共祖先Tarjan(离线)
查看>>
牛客练习赛16 E求值
查看>>
matlab rank
查看>>
Asp.net系列--基础篇(三)
查看>>
css基础
查看>>
如何在tomcat中如何部署java EE项目
查看>>
【Python基础教程第2版】——第二讲:列表和元组
查看>>
小常识
查看>>