暗記メーカー
ログイン
HTML
  • J

  • 問題数 56 • 5/21/2024

    記憶度

    完璧

    8

    覚えた

    21

    うろ覚え

    0

    苦手

    0

    未解答

    0

    アカウント登録して、解答結果を保存しよう

    問題一覧

  • 1

    Which tag compromises the title tag or <title>.

    <head>

  • 2

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

    Tags

  • 3

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

    <img> </img>

  • 4

    What makes HTML so powerful?

    Works out well using a simple text editor.

  • 5

    Which of the following is not a semantic element.

    <html>

  • 6

    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>

  • 7

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

    TRUE

  • 8

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

    </html>

  • 9

    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.

  • 10

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

    Tags

  • 11

    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

  • 12

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

    False

  • 13

    Choose the correct line that represents tags with attributes.

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

  • 14

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

    href

  • 15

    Putting one tag inside another is called?

    Nesting

  • 16

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

    <u> </u>

  • 17

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

    <body>

  • 18

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

    FALSE

  • 19

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

    <b> </b>

  • 20

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

    Document Creation

  • 21

    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.

  • 22

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

    anchor <a>

  • 23

    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>

  • 24

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

    <nav> </nav>

  • 25

    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>

  • 26

    Which is the correct sequence of HTML?

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

  • 27

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

    Yes

  • 28

    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.

  • 29

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

    <i> </i>

  • 30

    Why isn't HTML a programming language?

    All choices are correct.

  • 31

    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.

  • 32

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

    Incorrect usage of quotes and comma

  • 33

    What is the correct description of !DOCTYPE?

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

  • 34

    _____ is a replacement for <div>.

    <article>

  • 35

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

    src

  • 36

    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

  • 37

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

    <div> </div>

  • 38

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

    <!DOCTYPE html>

  • 39

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

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

  • 40

    Choose the correct additional features of HTML5 :

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

  • 41

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

    FALSE

  • 42

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

    Indentation

  • 43

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

    src, style, href

  • 44

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

    All of the above.

  • 45

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

    Tags

  • 46

    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" />

  • 47

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

    <html>

  • 48

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

    Document Creation and Tags

  • 49

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

    ;(semicolon)

  • 50

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

    attributes

  • 51

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

    <article> </article>

  • 52

    What does "alt" function in html code?

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

  • 53

    Which is not an element in an HTML document?

    <!DOCTYPE>

  • 54

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

    < head>

  • 55

    How web browsers interact with HTML?

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

  • 56

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

    <body> </body>