HTML, CSS, JavaScript Flashcards
WHat tag defines a comment in HTML
<!— example comment —>
How to specify the document type in HTML
<!DOCTYPE html>
(must be the first line, has no closing tag)
What tag represents a hyperlink in HTML
<a href=“http://www.ExamplePage.net”>Link Text</a>
href indicates the link’s destination
which element contains all the contents of an HTML document
<body>(content)</body>
How to write a link break in HTML
<br></br>
(no closing tag)
which element in HTML is usually used with CSS to lay out a web page into sections
<div>
</div>
how to write a heading in HTML
<h1> </h1>
to <h6> </h6>
what is the container for all the “head” elements in HTML
<head> </head>
Must include a title for the document and can include styles and scripts
How to draw horizontal line in HTML
<hl>
</hl>
How to bookend a HTML document
<html>
</html>
how to place an image into a html document
<img></img>
How to write a paragraph into a html document
<p> </p>
how to specify the title of a document
<title>Example Title</title>