HTML Introduce Flashcards
Learn HTLM Code Academy Course
What is HTML?
HTML stands for HyperText Markup Language and is used to create the structure and content of a webpage.
In what tag should be placed visually content?
visible content should be placed within the opening and closing (“”) tags
what’s the use of <h1> to <h6> tags?</h6></h1>
it is used in Headings and sub-headings, are used to enlarge text.
What tags do you use to emphasize text?
The (<em> and <strong>) tags are used to emphasize text.</strong></em>
which tags do you use to create Line breaks in an HTML doc?
Line breaks are created with the (<br></br>) tag.
which tags do you use to create a numbered ordered list?
The Numbered ordered list is created with (<ol>) tags.
Ej: “<ol>
<li><li>
</li><li><li>
</li></ol>”</ol>
which tags do you use to create numbered unordered list?
The unordered list is created with (<ul>) tags.
Ej: “<ul>
<li><li>
</li><li><li>
</li></ul>”</ul>
What elements contain an HTML?
Most HTML elements contain opening and closing tags with raw text or other HTML tags between them.
Ej: <h1>The Brown Bear</h1>
which tags do you use to create a list?
the Lists are created which (<li>) tag.</li>
which tags do you use to insert an image in an HTML doc?
you use (<img></img>) to insert an image in an HTML document.
Ej: “<img></img>”
which tags do you use to insert a video in an HTML doc?
you use () to insert an image in an HTML document.
Ej: “
Video not supported
“
For what do you use (src=””) in HTML?
is used to specify the source of a file, stored in your local machine or internet.
For what do you use (alt=””) in HTML?
The alt attribute, which means alternative text, it uses to add a description of an image, and search engine to index better your site.
Ej: <img></img>
what is the use of controls attribute in the video tags?
The controls attribute instructs the browser to include basic video controls: pause, play and skip.
what tags do you use to display text in an HTML?
If you want to display text in HTML, you can use a (<p> or <span>) tags.</span>
Ej: <p>The brown bear (Ursus arctos)</p></span></p>
what is the use of the (id=””) in HTML?
Help us identify content on our page.
Ej: <div>
<h1>Introduction</h1>
</div>
what is the use of the (<div>) tags in HTML?</div>
the <div> element. <div> is short for “division” or a container that divides the page into sections and grouping elements in your HTML together.
Ej: " <div> <h1>Why use divs?</h1> <p>Great for grouping elements!</p> </div> "</div></div>