INTRO TO HTML Flashcards
is standard language for creating web pages
HTML (HyperText Markup Language)
It is used to structure content on the web
and to add elements like text, images,
links, and more
HTML
is not a programming language but
a markup language that defines the
structure of web pages
HTML
Websites are built using _______, where HTML provides the
content and structure
HTML CSS JAVASCRIPT
allows us to display content on a
web browser, making it essential for any
website
HTML
It is the foundation of every webpage
HTML
Every HTML document starts and ends
with the_____ tag
<html>
</html>
Declares the
document type and version of HTML being
used (HTML5)
<!DOCTYPE html>
This is the root element that
wraps the entire HTML content
<html>
</html>
Contains metadata (e.g., title,
character encoding) and is not directly
visible on the page
<head>
</head>
Specifies the
character encoding to support different
languages and characters
<meta></meta>
The title of the webpage shown
on the browser tab
<title>
</title>
This contains the content of the
webpage that will be visible to users
<body>
</body>