COMPUTER ALL LESSONS Flashcards
is thelanguage in which most websites are written
HTML
The code used to make HTML visually appealing
CSS
What is the text/code editor for an HTML document?
notepad or notepad ++
What application do you use to open a HTML?
browser
What is the basic structure of a HTML document?
<!DOCTYPE html>
<html>
<head>
<title> </title>
</head>
<body>
</body>
</html>
are commands written between less than (< )and greater than (>) signs
HTML tags
The html file/document must end with the extension name .html
TRUE
Indicates the beginning and the end of the title.
<title>
</title>
Inserts a horizontal line.
<hr></hr>
Breaks a line text and marks the start of a new line.
<br></br>
The beginning and the end of the HTML document.
<html>
</html>
Indicate the beginning of the paragraph
<p>
</p>
Contains text in boldface image
boldface tag
boldface tag syntax
<b> </b>
big tag syntax
<big> </big>