COMPUTER ALL LESSONS Flashcards
(29 cards)
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>
Contains text to be rendered in a font size bigger than the default size
big tag
Contains text which you want to be italic in format
italic tag
italic tag syntax
<i> </i>
Contains the text to be rendered with an underline
underline tag
strikethrough tag syntax
<S> </S>
<strike> </strike>
underline tag syntax
<u> </u>
contains text to be marked
strikethrough tag
is the largest font size
H1
is the smallest font size
H6