暗記メーカー

お問い合わせ
ログイン
HTML
  • J

  • 問題数 56 • 5/21/2024

    問題一覧

  • 1

    What are the 2 most important part of an HTML document?

    Document Creation and Tags

  • 2

    Why isn't HTML a programming language?

    All choices are correct.

  • 3

    First line of code that can be seen in HTML code.

    <!DOCTYPE html>

  • 4

    It focuses on what content is presented on a webpage like organizing text, images, links and other elements to create layout.

    Document Creation

  • 5

    It determines how it looks on a webpage including its style within the document like headings, paragraphs, lists and etc.

    Tags

  • 6

    What comes first from this tag that the browser recognizes as an HTML document with root element.

    <html>

  • 7

    Every opening tag like this: <html>, there is closing tag like this: ____?

    </html>

  • 8

    Which of the following tag does have content written inside that is not displayed on webpage.

    < head>

  • 9

    Which tag compromises the title tag or <title>.

    <head>

  • 10

    Which tag does have an actual content that's visible on where webpage is written

    <body>

  • 11

    Which is the correct sequence of HTML?

    <html> <head> <title> </title> </head> <body> </body> </html>

  • 12

    How web browsers interact with HTML?

    The server sends HTML documents to web browser. The browser uses the <html> tag to display the content.

  • 13

    What makes HTML so powerful?

    Works out well using a simple text editor.

  • 14

    There are 2 sentences; determine each sentences if correct or wrong. 1. Web servers are software used to deliver webpages to browsers. 2. Browsers decode instructions from the web server to display content on the screen.

    Both sentences are correct.

  • 15

    Indentation made it easy to understand. The ___ were written using lower case.

    Tags

  • 16

    All ____ were closed in the proper order. If they weren't closed properly, the code won't work.

    Tags

  • 17

    An art of providing space from the margin to provide structure of the code.

    Indentation

  • 18

    What's the usage of this denotation: <p> </p>

    It lets you make new paragraphs inside the body tag which is visible on the main webpage.

  • 19

    Can you place the <p> in the correct place?

    <body> </body>

  • 20

    The ____ tag will start a sentence from a new line in HTML that is inside the body tag. Additionally, it's a self-closing HTML tag.

    break

  • 21

    Is a self-closing tag defined as a tag wherein the opening and ending are both included in the same tag?

    Yes

  • 22

    The denotation from <h1> to <h6> are heading structures as well as the basis of priority located on the body tag. Choose another correct description to it.

    <h1> </h1> is the highest priority.

  • 23

    Bold tag usage is to mark the text bold and placed inside the body tag. Click the correct denotation.

    <b> </b>

  • 24

    Italic tag lets you mark the text in italic font. Click the correct denotation.

    <i> </i>

  • 25

    Underline tag lets you underline a certain text. Click the correct denotation.

    <u> </u>

  • 26

    Putting one tag inside another is called?

    Nesting

  • 27

    Image tag let's you add image to the webpage and also a self-closing tag. Click the correct denotation.

    <img> </img>

  • 28

    An attribute src provides additional info about your html tag to include in the image path or even image URL. Click the correct denotation.

    <img src = "image path" />

  • 29

    Division let's you divide the page into sections and the denotations are placed inside the body tag.

    <div> </div>

  • 30

    Linking between web pages or embedding other web pages links to your main web page is called?

    anchor <a>

  • 31

    An attribute does NOT give extra info about the HTML document to the browser like width, height, or color of an object.

    FALSE

  • 32

    The attribute is made up of two parts; Attribute Name and Attribute Value. Additionally, the "=" used to set the value. Choose the correct attribute name and attribute value.

    <a href = "https://programhub.io> Just a sample page </a>

  • 33

    The attribute value is placed inside the double quotes ("value").

    TRUE

  • 34

    What was the attribute used with the <a> tag?

    href

  • 35

    Fill in the blank. <img ___ = "image.jpg"/>

    src

  • 36

    You can define a width, height etc. for an image using these attributes:

    All of the above.

  • 37

    What is the error in this statement? <img src=image.jpg, width="10 height =17 alt-"Hey People"/>

    Incorrect usage of quotes and comma

  • 38

    What does "alt" function in html code?

    defines text for an image incase it can't be displayed.

  • 39

    Fill all the blanks: <img ___ = "image.png" ___ = "200" height = "400" ____ = "Hey people, Good day"/> <a _____ = "https://youtube.com"> The next season </a>

    src, width, alt, href

  • 40

    Choose the correct line that represents tags with attributes.

    <p style = "color:red"> I am an attribute </p>

  • 41

    Since HTML has been modified into HTML5, which of these characteristics are correct?

    Special tags are also added for embedding audio and video into the webpage.

  • 42

    Does Cross platform means not developing applications for more than platform such as web desktop, mobile, and etc.

    False

  • 43

    What is the correct description of !DOCTYPE?

    Declaration that defines the document type and version of HTML that the webpage is using.

  • 44

    HTML has no content specific elements like <header>, <footer>, <section>, and etc.

    FALSE

  • 45

    Choose the correct additional features of HTML5 :

    GeoLocation wherein location of the site visitor can be discovered using its API.

  • 46

    Contains the introductory part of the page. You can add the brand's name, image, logo, etc. <h1> to <h6> used to make it more approachable.

    <header> </header>

  • 47

    _____ is a discrete unit element that can consider the example of a comment box, blogpost, etc.

    <article> </article>

  • 48

    Information like Privacy Policy, Copyright Information, Contact and etc. are at the bottom of the webpage which you can see at every website. ________ makes it appear like that.

    <footer> </footer>

  • 49

    Links like Home Profile, My Account, and etc can be added under ______ to group them under one particular area.

    <nav> </nav>

  • 50

    _____ is a replacement for <div>.

    <article>

  • 51

    Which is not an element in an HTML document?

    <!DOCTYPE>

  • 52

    Which of the following is not a semantic element.

    <html>

  • 53

    Which property of the Style attribute lets you add background color to the text? Select the correct answer.

    <div style="background-color:blue">

  • 54

    2 or more properties in a style attribute are separated by which one of these? Select the correct answer.

    ;(semicolon)

  • 55

    The way the browser displays an object can be modified by____. Select the correct answer.

    attributes

  • 56

    Can you match the attibutes with the respective tags they are used with in chronological order? <img> <p> <a>

    src, style, href