HTML Questions (15)
[Link] does HTML stand for?
A. Hyperlinks and Text Markup Language
B. Hyper Text Markup Language
C. Home Tool Markup Language
D. None of the above
[Link] tag is used to create a hyperlink in HTML?
A. <link>
B. <a>
C. <href>
D. <hyper>
[Link] tag is used for inserting an image in HTML?
A. <img>
B. <picture>
C. <image>
D. <src>
[Link] is the correct HTML tag for the largest heading?
A. <head>
B. <h6>
C. <h1>
D. <heading>
[Link] attribute is used to provide alternative text for an image?
A. title
B. alt
C. src
D. Description
[Link] or False: HTML is case sensitive.
[Link] the correct HTML structure with html, head, and body tags.
[Link] is the purpose of the <form> tag in HTML?
[Link] can you open a link in a new tab using HTML?
A. target="_self"
B. target="_parent"
C. target="_blank"
D. target="new"
[Link] tag is used to define a table row in HTML?
A. <tr>
B. <td>
C. <row>
D. <th>
[Link] does the <br> tag do in HTML?
[Link] a simple form in HTML with input fields for name and email.
[Link]’s the difference between <ul> and <ol>?
[Link] tag is used to embed a video in HTML5?
[Link] do you add a comment in HTML?
CSS Questions (15)
[Link] does CSS stand for?
A. Creative Style Sheets
B. Cascading Style Sheets
C. Computer Style Sheets
D. Colorful Style Sheets
[Link] property is used to change the background color?
A. color
B. bgcolor
C. background-color
D. background
[Link] do you apply styles to all <p> elements in a page?
A. #p {}
B. .p {}
C. p {}
D. *p {}
[Link] is the default position of HTML elements?
A. Relative
B. Absolute
C. Static
D. Fixed
[Link] CSS property is used to center text horizontally?
[Link] the syntax to link a CSS file in HTML.
[Link] is the difference between id and class in CSS?
[Link] or False: Inline CSS overrides external and internal styles.
[Link] symbol is used to select a class in CSS?
A. #
B. .
C. @
D. $
[Link] is the output of the following CSS rule?
div {
display: flex;
justify-content: center;
align-items: center;
A. Aligns text to left
B. Centers content both vertically and horizontally
C. Makes div invisible
D. Creates a grid layout
[Link] is the box model in CSS? List its components.
[Link] do you make a div 100% wide and 100px tall with a red border?
13Create four <div> elements inside a container and align them in a single line.
Each <div> should have a height of 200px and a width of 200px. Also, add
content inside each <div> and align the content to the center of the <div> both
vertically and horizontally.
[Link] property controls the space between lines of text?
A. word-spacing
B. line-height
C. letter-spacing
D. text-indent
[Link] a CSS rule to make all <h1> elements blue and center-aligned.