HTML + CSS Flashcards
(16 cards)
What is HTML
script that webpages are written in that allows a browser to interpret and render a webpage for the viewer.
All code written within these tags is interpreted as HTML
<html>
</html>
Defines the content in the main browser content area
<body>
</body>
Used to link to additional files, like CSS stylesheets
<link></link>
Defines the browser tab or window heading area
<head>
</head>
Defines the text that appears with the tab or window heading area
<title>
</title>
Heading styles in decreasing sizes
<h1>, <h2>, <h3>
</h3></h2></h1>
A paragraph separated with a line space above and below
<p>
</p>
Self closing tag used for images
<img></img>
Code to display an image called pic.png with the width and height as 100px
<img></img>
Tag defining a hyperlink with location parameters
<a> (anchor tag)</a>
Display a word called link with the link link.com
<a> Link </a>
Ordered list
<ol>
</ol>
Make an ordered list with 1,2,3
<ol>
<li> 1 </li>
<li> 2 </li>
<li> 3 </li>
</ol>
unordered list
<ul>
</ul>
Link with a CSS style sheet called styles.css
<head>
<a>
</head>
</a></head>