Prelims Flashcards
The language uses tags to define what manipulation has to be done on the text
HTML
When was HTML first released?
1993
When was HTML5 released?
2014
HTML uses predefined ___ and ___ that tell the browser how to properly display the content
tag and element
This declares the document as being an HTML document
<!DOCTYPE html>
HTML root element
<html>
</html>
Contains the title of the webpage that you are viewing
<title>
</title>
Encloses all the visible content of a webpage
<body>
</body>
Inserts styling to your webpages
<style>
</style>These are used to create and modify web pages
HTML editors
Give examples of html text editors
Notepad, Brackets, Sublime Text, Atom, Visual Studio Code
Highlights added on inserted text
<ins></ins>
Creates subscript text
</sub>
Emphasizes text with importance, often in bold
<strong></strong>
Display text in a bold format
<b></b>
Accountants text with background highlight
<mark></mark>
Strikes through text to signify deletion
<dell>
</dell>