[SkylerAI]Basic HTML and HTML5 : Say Hello to HTML Elements

前言:书写本文仅为了锻炼本人的翻译能力以及编程能力,无任何商业用途!(素材摘自freecodecamp的编程课程)

课程原文:
Basic HTML and HTML5 : Say Hello to HTML Elements
Welcome to freeCodeCamp's HTML coding challenges. These will walk you through web development step-by-step.
First, you'll start by building a simple web page using HTML. You can edit code in your code editor, which is embedded into this web page.
Do you see the code in your code editor that says 

Hello

? That's an HTML element. Most HTML elements have an opening tag and a closing tag. Opening tags look like this:

Closing tags look like this:

The only difference between opening and closing tags is the forward slash after the opening bracket of a closing tag. Each challenge has tests you can run at any time by clicking the "Run tests" button. When you pass all tests, you'll be prompted to submit your solution and go to the next coding challenge. To pass the test on this challenge, change your h1 element's text to say "Hello World".
本人翻译:(HTML译为超文本标记语言,后续不再翻译)
基础的HTML和HTML5 :向HTML元素问好
欢迎来到免费编程训练营的HTML编程挑战,这些挑战会一步一步带你走向网页开发。
首先,你会开始于使用HTML建立一个简单的网页,你可以在你的代码编辑器中编辑代码,这个编辑器已经被嵌套在网页中了。
你是否已经看到在你的代码编辑器中书写的

Hello

?这个就是一个HTML元素。 大多数的HTML元素都有一个开始标记和一个结束标记。 开始标记就像这样:

结束标记就像这样:

开始标记与结束标记之间唯一不同的是结束标记开始的括号后有一个斜杠。 在每一个挑战中你都可以在任何时间通过点击“运行测试”按钮进行测试,当你通过所有测试后,你会被告知去提交你的答案并且进入下一节编程挑战。 为了通过此挑战的测试,请将h1元素的文本更改为“Hello World”。 修改翻译:(参考谷歌翻译) 1.开始的括号后有一个斜杠 更改为 左括号之后的正斜杠
挑战答案:

Hello

更改为

Hello World

必背单词:(原文中含义)
1.embed 嵌
2.forward slash 正斜线
3.bracket 括弧
4.prompt 提示
编程知识:
1.大多数HTML元素都有一个开始标记<>和一个结束标记

你可能感兴趣的:([SkylerAI]Basic HTML and HTML5 : Say Hello to HTML Elements)