耶!!!第一篇 HTML 最最最最基础之前学习的东西

今天在飘飘同学的鼓励和建议下,我终于开通了博客园博客哈哈!!!决定把新学习的一些东西的笔记记录在这里,还可以互相监督学习,互相鼓励!谁让我们都是追求进步的人呢是吧!哦吼吼吼

之前自己一直跟着视频学习了一些html,其实学习的很慢很慢(按理说如果不是跟着视频,而是就看看html代码可能学得更快,不过也可能基础不牢固。不过说实话html这东西估计也没什么基础牢不牢固而言额)。刚才突发奇想去w3schools上面做了一个20道题的小test,本来以为结果会很惨没想到还行。在这分享一下答案 - 

W3Schools HTML Quiz

HTML QUIZPoints: 16 out of 20

1. What does HTML stand for? [答案是Hyper and Text Markup Language]

You answered:

Hyperlinks and Text Markup Language

 Wrong Answer!


2. Who is making the Web standards?

You answered:

The World Wide Web Consortium

 Correct Answer!


3. Choose the correct HTML tag for the largest heading

You answered:

<h1>

 Correct Answer!


4. What is the correct HTML tag for inserting a line break?

You answered:

<br>

 Correct Answer!


5. What is the preferred way for adding a background color in HTML?  [答案是<body bgcolor="yellow">]

You answered:

<body background="yellow">

 Wrong Answer!


6. Choose the correct HTML tag to make a text bold [答案是<b>]

You answered:

<bold>

 Wrong Answer!


7. Choose the correct HTML tag to make a text italic

You answered:

<i>

 Correct Answer!


8. What is the correct HTML for creating a hyperlink?

You answered:

<a href="http://www.w3schools.com">W3Schools</a>

 Correct Answer!


9. How can you create an e-mail link?

You answered:

<mail href="xxx@yyy">

 Wrong Answer!


10. How can you open a link in a new tab/browser window?

You answered:

<a href="url" target="_blank">

 Correct Answer!


11. Which of these tags are all <table> tags?

You answered:

<table><tr><td>

 Correct Answer!


12. In HTML, inline elements are normally displayed without starting a new line.

You answered:

True

 Correct Answer!


13. How can you make a numbered list?

You answered:

<ol>

 Correct Answer!


14. How can you make a bulleted list?

You answered:

<ul>

 Correct Answer!


15. What is the correct HTML for making a checkbox?

You answered:

<input type="checkbox">

 Correct Answer!


16. What is the correct HTML for making a text input field?

You answered:

<input type="text">

 Correct Answer!


17. What is the correct HTML for making a drop-down list?

You answered:

<select>

 Correct Answer!


18. What is the correct HTML for making a text area?

You answered:

<textarea>

 Correct Answer!


19. What is the correct HTML for inserting an image?

You answered:

<img src="image.gif" alt="MyImage">

 Correct Answer!


20. What is the correct HTML for inserting a background image?

You answered:

<body background="background.gif">

 Correct Answer!



By W3SchoolsTime spent: 4:40 

比我想象的好多啦!打算还是先看看视频,然后结合w3schools一起学习

原文地址:https://www.cnblogs.com/ellasungenius/p/3728617.html