Basic Concepts Flashcards
Review the basics of HTML
Set the language?
< html lang=”en” >
Set up overall settings for a document?
< head > </ head >
Sets character set?
< meta charset=”utf-8” >
Set title for tab in explorer?
My Page
< link rel=”stylesheet” href=”Smells Like Bakin/css/normalize.css” type=”text/css” media=”screen” >
EXTERNAL: the “link rel” are links to other types of files used. Order specific.
Allows you to script in another language
< script type=”text/javascript” > </ script >
< style type=”text/css” > < /style >
INTERNAL: below style type is a mock up type of CSS not for permanent use
Body tag contains the main body of text used throughout the webpage
< body >
Headline tag - six different levels of headline tag
<h1> <h2> ...
</h2></h1>
Paragraph Text
<p>
</p>
Emphasis on encompassed text
<em></em>
Have a horizontal line ruler
<hr></hr>
<blockquote>
</blockquote>
Citation of quote used
Set a break
<br></br>
Preformatted text
<pre>
</pre>