博客
关于我
强烈建议你试试无所不能的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/

你可能感兴趣的文章
为什么linux安装程序 都要放到/usr/local目录下
查看>>
Hive安装前扫盲之Derby和Metastore
查看>>
永久修改PATH环境变量的几种办法
查看>>
大数据学习之HDP SANDBOX开始学习
查看>>
Hive Beeline使用
查看>>
Centos6安装图形界面(hdp不需要,hdp直接从github上下载数据即可)
查看>>
CentOS7 中把yum源更换成163源
查看>>
关于yum Error: Cannot retrieve repository metadata (repomd.xml) for repository:xxxxxx.
查看>>
2020-11-18
查看>>
Docker面试题(二)
查看>>
【NOI 2018】归程(Kruskal重构树)
查看>>
注册用户
查看>>
TZC Intercommunication System
查看>>
HDU 4571 SPFA+DP
查看>>
centos 创建以日期为名的文件夹
查看>>
Java Timer触发定时器
查看>>
Page Object设计模式
查看>>
程序的基础知识
查看>>
在VIM中使用GDB调试 – 使用vimgdb
查看>>
python爬虫---从零开始(五)pyQuery库
查看>>