HTML and CSS Flashcards
What is HTML?
A format that tells a computer how to display a web page. The documents themselves are
plain text files with special “tags” or codes that a web browser uses to interpret and display
information on your computer screen.
What does HTML stand for ?
Hyper Text Markup Language
What should a HTML file have ?
A HTML file extension
What is <!DOCTYPE…>
This tag defines the document type and HTML version.
<html>
</html>
This tag encloses the completeHTML document and mainly comprises of documents header which is represented by <head> … </head> and document body which is represented by <body > … /< /body> tags.
Goes at start and end of page
<head>
</head>
Tag that Represents document header, which can keep <title> <link></link> etc.</title>
<title>
</title>
Tag that is used inside <head> tag , to mention document title
Appears on the browser window
<body>
</body>
Tag that keeps other tags eg: <h1> <div> <p> etc
It so visible content on webpage.
<h1>
</h1>
Tag represents heading on webpage
<p>
</p>
Tag represents paragraph
<b></b>
Tag for bold text
<i></i>
Tag for italics
<strong></strong>
Tag displays strong text
Similar to bold
What is the largest heading <h1> to <h6>
<h1> is the largest heading
<h6> is the smallest heading
</h6></h1>
<ul>
</ul>
Unordered list, bullet pints
Each point starts with <li>